From: rguenth Date: Fri, 24 Oct 2014 07:57:51 +0000 (+0000) Subject: 2014-10-24 Richard Biener X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa1e121ae20b2c5249178c43ddc71797b8be5419;p=thirdparty%2Fgcc.git 2014-10-24 Richard Biener * fold-const.c (fold_binary_loc): Fix copy-and-pasto. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216617 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 857acd07f82e..01f44ecaca0c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2014-10-24 Richard Biener + + * fold-const.c (fold_binary_loc): Fix copy-and-pasto. + 2014-10-24 Markus Trippelsdorf PR bootstrap/63632 diff --git a/gcc/fold-const.c b/gcc/fold-const.c index d70658c32d51..40317f3ace9f 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -10596,8 +10596,9 @@ fold_binary_loc (location_t loc, TREE_OPERAND (arg1, 0)); tree arg11 = fold_convert_loc (loc, type, TREE_OPERAND (arg1, 1)); - tree tmp = fold_binary_loc (loc, MINUS_EXPR, type, arg0, - fold_convert_loc (loc, type, arg10)); + tree tmp = fold_binary_loc (loc, MINUS_EXPR, type, + fold_convert_loc (loc, type, arg0), + arg10); if (tmp) return fold_build2_loc (loc, MINUS_EXPR, type, tmp, arg11); }