Commit b722c9a2 by Jakub Jelinek Committed by Jakub Jelinek

* tree.c (cp_tree_equal): Fix a pasto.

From-SVN: r196705
parent 87eb16a1
2013-03-16 Jakub Jelinek <jakub@redhat.com> 2013-03-16 Jakub Jelinek <jakub@redhat.com>
* tree.c (cp_tree_equal): Fix a pasto.
PR c++/56607 PR c++/56607
* typeck.c (cp_build_binary_op): When calling warn_for_div_by_zero, * typeck.c (cp_build_binary_op): When calling warn_for_div_by_zero,
pass op1 through maybe_constant_value first. pass op1 through maybe_constant_value first.
......
...@@ -2486,7 +2486,7 @@ cp_tree_equal (tree t1, tree t2) ...@@ -2486,7 +2486,7 @@ cp_tree_equal (tree t1, tree t2)
t1 = TREE_OPERAND (t1, 0); t1 = TREE_OPERAND (t1, 0);
for (code2 = TREE_CODE (t2); for (code2 = TREE_CODE (t2);
CONVERT_EXPR_CODE_P (code2) CONVERT_EXPR_CODE_P (code2)
|| code1 == NON_LVALUE_EXPR; || code2 == NON_LVALUE_EXPR;
code2 = TREE_CODE (t2)) code2 = TREE_CODE (t2))
t2 = TREE_OPERAND (t2, 0); t2 = TREE_OPERAND (t2, 0);
......
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