Commit bbda4250 by Jason Merrill

*** empty log message ***

From-SVN: r9811
parent 58fe4e59
...@@ -3414,10 +3414,9 @@ type_list_equal (l1, l2) ...@@ -3414,10 +3414,9 @@ type_list_equal (l1, l2)
for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2)) for (t1 = l1, t2 = l2; t1 && t2; t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
if (TREE_VALUE (t1) != TREE_VALUE (t2) if (TREE_VALUE (t1) != TREE_VALUE (t2)
|| (TREE_PURPOSE (t1) != TREE_PURPOSE (t2) || (TREE_PURPOSE (t1) != TREE_PURPOSE (t2)
&& ! ((TREE_TYPE (TREE_PURPOSE (t1)) && ! (1 == simple_cst_equal (TREE_PURPOSE (t1), TREE_PURPOSE (t2))
== TREE_TYPE (TREE_PURPOSE (t2))) && (TREE_TYPE (TREE_PURPOSE (t1))
&& 1 == simple_cst_equal (TREE_PURPOSE (t1), == TREE_TYPE (TREE_PURPOSE (t2))))))
TREE_PURPOSE (t2)))))
return 0; return 0;
return t1 == t2; return t1 == t2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment