diff options
author | Tom Wood <wood@gnu.org> | 1993-04-22 11:48:17 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1993-04-22 11:48:17 +0000 |
commit | a0825a7f0c1cab7489751528a818ca383a63798d (patch) | |
tree | c62fa84e18475fd9f2c9ca309957f2ca2cdae118 /gcc/c-lang.c | |
parent | 237de4b2ffa8aa80c2e719aa31f6efda68aa4be1 (diff) | |
download | gcc-a0825a7f0c1cab7489751528a818ca383a63798d.zip gcc-a0825a7f0c1cab7489751528a818ca383a63798d.tar.gz gcc-a0825a7f0c1cab7489751528a818ca383a63798d.tar.bz2 |
(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
Diffstat (limited to 'gcc/c-lang.c')
-rw-r--r-- | gcc/c-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-lang.c b/gcc/c-lang.c index eb49f9f..8b46b3c 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 |