diff options
Diffstat (limited to 'gcc/cp/tree.c')
-rw-r--r-- | gcc/cp/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/tree.c b/gcc/cp/tree.c index ff19cd6..8168297 100644 --- a/gcc/cp/tree.c +++ b/gcc/cp/tree.c @@ -1739,12 +1739,12 @@ cp_tree_equal (tree t1, tree t2) return false; for (code1 = TREE_CODE (t1); - code1 == NOP_EXPR || code1 == CONVERT_EXPR + CONVERT_EXPR_CODE_P (code1) || code1 == NON_LVALUE_EXPR; code1 = TREE_CODE (t1)) t1 = TREE_OPERAND (t1, 0); for (code2 = TREE_CODE (t2); - code2 == NOP_EXPR || code2 == CONVERT_EXPR + CONVERT_EXPR_CODE_P (code2) || code1 == NON_LVALUE_EXPR; code2 = TREE_CODE (t2)) t2 = TREE_OPERAND (t2, 0); |