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:
Matt Austern 2005-01-20 01:43:21 +00:00 committed by Matt Austern
parent 29de1f673f
commit b3b35f14b0
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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. */