diff options
author | Tom Wood <wood@gnu.org> | 1993-04-14 17:32:18 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1993-04-14 17:32:18 +0000 |
commit | 81e4c08f9f7b6e89d55328c099a86dcbf7c4243e (patch) | |
tree | 38fb52a154a904b406168ee161dba7cc0ccc1ce0 /gcc | |
parent | 08632da2b6394e5859f709021c96f9492bda5017 (diff) | |
download | gcc-81e4c08f9f7b6e89d55328c099a86dcbf7c4243e.zip gcc-81e4c08f9f7b6e89d55328c099a86dcbf7c4243e.tar.gz gcc-81e4c08f9f7b6e89d55328c099a86dcbf7c4243e.tar.bz2 |
(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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/c-lang.c | 2 | ||||
-rw-r--r-- | 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 a6c9bcd..eb49f9f 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 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 |