(maybe_objc_comptypes): Return 0 (incompatible) rather than 2 (similar enough) as the default.

(maybe_objc_comptypes): Return 0
        (incompatible) rather than 2 (similar enough) as the default.
        This was an inadvertent change in the Objective-C merge.

From-SVN: r4153
This commit is contained in:
Tom Wood 1993-04-14 17:32:18 +00:00
parent 08632da2b6
commit 81e4c08f9f
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive)
tree lhs, rhs;
int reflexive;
{
return 2;
return 0;
}
tree

View File

@ -584,7 +584,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive)
{
if (doing_objc_thang)
return objc_comptypes (lhs, rhs, reflexive);
return 2;
return 0;
}
static tree