(expand_expr, case COND_EXPR): Fix typo; const1_rtx should
be const0_rtx when ignoring expression. From-SVN: r4674
This commit is contained in:
parent
ed58a12821
commit
2937cf8796
|
@ -4903,7 +4903,7 @@ expand_expr (exp, target, tmode, modifier)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
expand_expr (singleton,
|
expand_expr (singleton,
|
||||||
ignore ? const1_rtx : NULL_RTX, VOIDmode, 0);
|
ignore ? const0_rtx : NULL_RTX, VOIDmode, 0);
|
||||||
if (cleanups_this_call)
|
if (cleanups_this_call)
|
||||||
{
|
{
|
||||||
sorry ("aggregate value in COND_EXPR");
|
sorry ("aggregate value in COND_EXPR");
|
||||||
|
|
Loading…
Reference in New Issue