From: Graham Stott Date: Sun, 20 Nov 2005 15:02:13 +0000 (+0000) Subject: gensupport.c (std_preds): Fixed extraneous `false` in last change. X-Git-Tag: releases/gcc-4.2.0~5849 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1815d8d463d6493dde50252a94556910977b0a53;p=thirdparty%2Fgcc.git gensupport.c (std_preds): Fixed extraneous `false` in last change. * gensupport.c (std_preds): Fixed extraneous `false` in last change. From-SVN: r107252 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9371555a60af..bb1d5ab39c15 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-11-20 Graham Stott + + * gensupport.c (std_preds): Fixed extraneous `false` in last change. + 2005-11-20 Andreas Schwab PR target/24757 diff --git a/gcc/gensupport.c b/gcc/gensupport.c index c5062343d28a..5e29e4418ebe 100644 --- a/gcc/gensupport.c +++ b/gcc/gensupport.c @@ -1242,7 +1242,7 @@ static const struct std_pred_table std_preds[] = { {"const_double_operand", false, {CONST_INT, CONST_DOUBLE}}, {"nonimmediate_operand", false, {SUBREG, REG, MEM}}, {"nonmemory_operand", false, {CONST_INT, CONST_DOUBLE, CONST, SYMBOL_REF, - false, LABEL_REF, SUBREG, REG}}, + LABEL_REF, SUBREG, REG}}, {"push_operand", false, {MEM}}, {"pop_operand", false, {MEM}}, {"memory_operand", false, {SUBREG, MEM}},