From a0825a7f0c1cab7489751528a818ca383a63798d Mon Sep 17 00:00:00 2001 From: Tom Wood Date: Thu, 22 Apr 1993 11:48:17 +0000 Subject: [PATCH] (maybe_objc_comptypes): Undo the previous change and make the undecided return... (maybe_objc_comptypes): Undo the previous change and make the undecided return value from 2 to -1 to avoid confusion with the values used by comptypes. From-SVN: r4191 --- gcc/c-lang.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-lang.c b/gcc/c-lang.c index eb49f9f8018..8b46b3c10cb 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 0; + return -1; } tree -- 2.30.2