c-typeck.c (tagged_types_tu_compatible_p): Fix typo.

2004-03-09  Andrew Pinski  <apinski@apple.com>

        * c-typeck.c (tagged_types_tu_compatible_p):
        Fix typo.

From-SVN: r79203
This commit is contained in:
Andrew Pinski 2004-03-09 22:24:32 +00:00 committed by Andrew Pinski
parent bfb0a4ad70
commit f38f747dba
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-03-09 Andrew Pinski <apinski@apple.com>
* c-typeck.c (tagged_types_tu_compatible_p):
Fix typo.
2004-03-09 Roger Sayle <roger@eyesopen.com>
* simplify-rtx.c (simplify_const_relational_operation): New function

View File

@ -709,7 +709,7 @@ tagged_types_tu_compatible_p (tree t1, tree t2, int flags)
if (tv1 == tv2)
return 1;
for (;tv1 && tv2; tv1 = TREE_CHAIN (tv2), tv2 = TREE_CHAIN (tv2))
for (;tv1 && tv2; tv1 = TREE_CHAIN (tv1), tv2 = TREE_CHAIN (tv2))
{
if (TREE_PURPOSE (tv1) != TREE_PURPOSE (tv2))
break;