From 81e4c08f9f7b6e89d55328c099a86dcbf7c4243e Mon Sep 17 00:00:00 2001 From: Tom Wood Date: Wed, 14 Apr 1993 17:32:18 +0000 Subject: (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 --- gcc/objc/objc-act.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/objc') diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 74a07c0..1be6b7e 100644 --- a/gcc/objc/objc-act.c +++ b/gcc/objc/objc-act.c @@ -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 -- cgit v1.1