diff options
author | Richard Guenther <rguenther@suse.de> | 2011-01-21 14:14:12 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2011-01-21 14:14:12 +0000 |
commit | f99cc488e2dce167370c00d1948fe2846acab19c (patch) | |
tree | 021e8459bc03a54266dfc8662bb1aa71c4b37bce /gcc/tree.def | |
parent | 657cbcffd052226873ce4629baafd48296d5aa72 (diff) | |
download | gcc-f99cc488e2dce167370c00d1948fe2846acab19c.zip gcc-f99cc488e2dce167370c00d1948fe2846acab19c.tar.gz gcc-f99cc488e2dce167370c00d1948fe2846acab19c.tar.bz2 |
re PR other/47395 (the tree code WIDEN_MULT_MINUS_EXPR has a mismatching name)
2011-01-21 Richard Guenther <rguenther@suse.de>
PR middle-end/47395
* tree.def (WIDEN_MULT_MINUS_EXPR): Fix printed name.
From-SVN: r169092
Diffstat (limited to 'gcc/tree.def')
-rw-r--r-- | gcc/tree.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree.def b/gcc/tree.def index 791d699..eb94ad2 100644 --- a/gcc/tree.def +++ b/gcc/tree.def @@ -1090,7 +1090,7 @@ DEFTREECODE (WIDEN_MULT_EXPR, "widen_mult_expr", tcc_binary, 2) DEFTREECODE (WIDEN_MULT_PLUS_EXPR, "widen_mult_plus_expr", tcc_expression, 3) /* This is like the above, except in the final expression the multiply result is subtracted from t3. */ -DEFTREECODE (WIDEN_MULT_MINUS_EXPR, "widen_mult_plus_expr", tcc_expression, 3) +DEFTREECODE (WIDEN_MULT_MINUS_EXPR, "widen_mult_minus_expr", tcc_expression, 3) /* Fused multiply-add. All operands and the result are of the same type. No intermediate |