mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 10:40:50 +08:00
typeck.c (comptypes): Handle return code from objc_comptypes correctly.
* typeck.c (comptypes): Handle return code from objc_comptypes correctly. From-SVN: r93934
This commit is contained in:
parent
29de1f673f
commit
b3b35f14b0
@ -1,3 +1,8 @@
|
||||
2005-01-19 Matt Austern <austern@apple.com>
|
||||
|
||||
* typeck.c (comptypes): Handle return code from objc_comptypes
|
||||
correctly.
|
||||
|
||||
2005-01-19 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* cp-tree.h, name-lookup.h: Remove unused prototypes.
|
||||
|
@ -1020,7 +1020,7 @@ comptypes (tree t1, tree t2, int strict)
|
||||
|
||||
/* We may be dealing with Objective-C instances... */
|
||||
if (TREE_CODE (t1) == RECORD_TYPE
|
||||
&& (retval = objc_comptypes (t1, t2, 0) >= 0))
|
||||
&& ((retval = objc_comptypes (t1, t2, 0)) >= 0))
|
||||
return retval;
|
||||
/* ...but fall through if we are not. */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user