Commit 4d87de75 by Richard Stallman

(expand_expr): Set ignore for COND_EXPR with VOID_TYPE.

From-SVN: r5293
parent 6a4bb1fa
...@@ -3365,7 +3365,8 @@ expand_expr (exp, target, tmode, modifier) ...@@ -3365,7 +3365,8 @@ expand_expr (exp, target, tmode, modifier)
rtx original_target = target; rtx original_target = target;
int ignore = (target == const0_rtx int ignore = (target == const0_rtx
|| ((code == NON_LVALUE_EXPR || code == NOP_EXPR || ((code == NON_LVALUE_EXPR || code == NOP_EXPR
|| code == CONVERT_EXPR || code == REFERENCE_EXPR) || code == CONVERT_EXPR || code == REFERENCE_EXPR
|| code == COND_EXPR)
&& TREE_CODE (type) == VOID_TYPE)); && TREE_CODE (type) == VOID_TYPE));
tree context; tree context;
......
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