Commit a646a211 by Jason Merrill

(warn_if_unused_value): Handle TREE_NO_UNUSED_WARNING for

        COMPOUND_EXPRs, too.

From-SVN: r7500
parent 248c0f74
......@@ -1697,6 +1697,8 @@ warn_if_unused_value (exp)
return warn_if_unused_value (TREE_OPERAND (exp, 1));
case COMPOUND_EXPR:
if (TREE_NO_UNUSED_WARNING (exp))
return 0;
if (warn_if_unused_value (TREE_OPERAND (exp, 0)))
return 1;
/* Let people do `(foo (), 0)' without a warning. */
......
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