From 8bce9e986f8ef941b4d34b6579261fd5df9722c6 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Tue, 29 Nov 2005 22:18:04 +0000 Subject: fold-const.c (negate_expr): Add break after the if. 2005-11-29 Andrew Pinski * fold-const.c (negate_expr) : Add break after the if. From-SVN: r107682 --- gcc/ChangeLog | 5 +++++ gcc/fold-const.c | 1 + 2 files changed, 6 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a73665..031d15e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2005-11-29 Andrew Pinski + * fold-const.c (negate_expr) : Add break after + the if. + +2005-11-29 Andrew Pinski + * fold-const.c (negate_expr_p): Return true for BIT_NOT_EXPR. (fold_unary) : Move -(~a) transformation to ... (negate_expr): Here. diff --git a/gcc/fold-const.c b/gcc/fold-const.c index 2718af1..c818011 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -1059,6 +1059,7 @@ negate_expr (tree t) if (INTEGRAL_TYPE_P (type)) return fold_build2 (PLUS_EXPR, type, TREE_OPERAND (t, 0), build_int_cst (type, 1)); + break; case INTEGER_CST: tem = fold_negate_const (t, type); -- cgit v1.1