diff options
author | Shujing Zhao <pearly.zhao@oracle.com> | 2010-06-08 04:07:55 +0000 |
---|---|---|
committer | Shujing Zhao <pzhao@gcc.gnu.org> | 2010-06-08 04:07:55 +0000 |
commit | 49c8958b5848f2d779b3777c43d7ec02fc62c466 (patch) | |
tree | 72209f6fb41631f9f281e41d2bc2f78bffb27703 /gcc/fold-const.c | |
parent | 6a8f4e12f5e44e292123c7424f703f8a7206e3a5 (diff) | |
download | gcc-49c8958b5848f2d779b3777c43d7ec02fc62c466.zip gcc-49c8958b5848f2d779b3777c43d7ec02fc62c466.tar.gz gcc-49c8958b5848f2d779b3777c43d7ec02fc62c466.tar.bz2 |
fold-const.c (fold_comparison): Remove redundant parenthesis.
2010-06-08 Shujing Zhao <pearly.zhao@oracle.com>
* fold-const.c (fold_comparison): Remove redundant parenthesis.
* tree-inline.c (expand_call_inline): Pass translated return value of
cgraph_inline_failed_string to diagnostic function.
From-SVN: r160419
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index b6e8ed6..9f2c250 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -8651,9 +8651,9 @@ fold_comparison (location_t loc, enum tree_code code, tree type, && (TREE_CODE (lhs) != INTEGER_CST || !TREE_OVERFLOW (lhs))) { - fold_overflow_warning (("assuming signed overflow does not occur " + fold_overflow_warning ("assuming signed overflow does not occur " "when changing X +- C1 cmp C2 to " - "X cmp C1 +- C2"), + "X cmp C1 +- C2", WARN_STRICT_OVERFLOW_COMPARISON); return fold_build2_loc (loc, code, type, variable, lhs); } |