Commit 8493738b by Richard Stallman

(check_case_value): Strip the new nops with STRIP_TYPE_NOPS.

From-SVN: r1549
parent a7d53fce
...@@ -309,8 +309,7 @@ check_case_value (value) ...@@ -309,8 +309,7 @@ check_case_value (value)
return value; return value;
/* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */ /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
if (TREE_CODE (value) == NON_LVALUE_EXPR) STRIP_TYPE_NOPS (value);
value = TREE_OPERAND (value, 0);
if (TREE_CODE (value) != INTEGER_CST if (TREE_CODE (value) != INTEGER_CST
&& value != error_mark_node) && value != error_mark_node)
......
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