From 02a37be8ad8dda00a8fb285adfd1b5114eea7383 Mon Sep 17 00:00:00 2001 From: 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. This was an inadvertent change in the Objective-C merge. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@4153 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/c-lang.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/c-lang.c') diff --git a/gcc/c-lang.c b/gcc/c-lang.c index a6c9bcdd4a2..eb49f9f8018 100644 --- a/gcc/c-lang.c +++ b/gcc/c-lang.c @@ -85,7 +85,7 @@ maybe_objc_comptypes (lhs, rhs, reflexive) tree lhs, rhs; int reflexive; { - return 2; + return 0; } tree -- cgit v1.2.3