From 81e4c08f9f7b6e89d55328c099a86dcbf7c4243e Mon Sep 17 00:00:00 2001 From: Tom Wood Date: Wed, 14 Apr 1993 17:32:18 +0000 Subject: [PATCH] (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/c-lang.c | 2 +- gcc/objc/objc-act.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 diff --git a/gcc/objc/objc-act.c b/gcc/objc/objc-act.c index 74a07c0a96a..1be6b7eb658 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 -- 2.30.2