Commit 81e4c08f by Tom Wood

(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
parent 08632da2
...@@ -85,7 +85,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive) ...@@ -85,7 +85,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive)
tree lhs, rhs; tree lhs, rhs;
int reflexive; int reflexive;
{ {
return 2; return 0;
} }
tree tree
......
...@@ -584,7 +584,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive) ...@@ -584,7 +584,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive)
{ {
if (doing_objc_thang) if (doing_objc_thang)
return objc_comptypes (lhs, rhs, reflexive); return objc_comptypes (lhs, rhs, reflexive);
return 2; return 0;
} }
static tree static tree
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment