From 2937cf8796f6713dd2ec10531838a3891f9c811a Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 13 Jun 1993 18:15:58 +0000 Subject: [PATCH] (expand_expr, case COND_EXPR): Fix typo; const1_rtx should be const0_rtx when ignoring expression. From-SVN: r4674 --- gcc/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");