diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/fold-const.c | 1 |
2 files changed, 6 insertions, 0 deletions
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 <pinskia@physics.uc.edu> + * fold-const.c (negate_expr) <case BIT_NOT_EXPR>: Add break after + the if. + +2005-11-29 Andrew Pinski <pinskia@physics.uc.edu> + * fold-const.c (negate_expr_p): Return true for BIT_NOT_EXPR. (fold_unary) <case NEGATE_EXPR>: 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); |