From: Richard Stallman Date: Sun, 13 Jun 1993 18:15:58 +0000 (+0000) Subject: (expand_expr, case COND_EXPR): Fix typo; const1_rtx should X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2937cf8796f6713dd2ec10531838a3891f9c811a;p=gcc.git (expand_expr, case COND_EXPR): Fix typo; const1_rtx should be const0_rtx when ignoring expression. From-SVN: r4674 --- diff --git a/gcc/expr.c b/gcc/expr.c index 08b2078cb52..d866d3c98ef 100644 --- a/gcc/expr.c +++ b/gcc/expr.c @@ -4903,7 +4903,7 @@ expand_expr (exp, target, tmode, modifier) } else expand_expr (singleton, - ignore ? const1_rtx : NULL_RTX, VOIDmode, 0); + ignore ? const0_rtx : NULL_RTX, VOIDmode, 0); if (cleanups_this_call) { sorry ("aggregate value in COND_EXPR");