From: Andrew Pinski Date: Tue, 9 Mar 2004 22:24:32 +0000 (+0000) Subject: c-typeck.c (tagged_types_tu_compatible_p): Fix typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f38f747dba8b1620264979af2801062ed4205034;p=gcc.git c-typeck.c (tagged_types_tu_compatible_p): Fix typo. 2004-03-09 Andrew Pinski * c-typeck.c (tagged_types_tu_compatible_p): Fix typo. From-SVN: r79203 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0c98dbfa28e..00bce6a1750 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-03-09 Andrew Pinski + + * c-typeck.c (tagged_types_tu_compatible_p): + Fix typo. + 2004-03-09 Roger Sayle * simplify-rtx.c (simplify_const_relational_operation): New function diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 15cb6def01c..a49b5ea2898 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -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;