diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-09 15:07:36 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-09 15:07:36 +0000 |
commit | 2859471c39a8a91040b815ff4129d3af2f79977d (patch) | |
tree | e2d59db0a416bdccf9b509a892d3f916dcf057cb | |
parent | 16da539b7d34cc314c354b29527746b42051ae14 (diff) | |
download | gcc-2859471c39a8a91040b815ff4129d3af2f79977d.zip gcc-2859471c39a8a91040b815ff4129d3af2f79977d.tar.gz gcc-2859471c39a8a91040b815ff4129d3af2f79977d.tar.bz2 |
* fold-const.c (fold): Fix a comment typo.
From-SVN: r67664
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fold-const.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f07c4d5..91346e0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-06-09 Kazu Hirata <kazu@cs.umass.edu> + + * fold-const.c (fold): Fix a comment typo. + 2003-06-09 Nathan Sidwell <nathan@codesourcery.com> * tree-inline.c (expand_call_inline): DECL_SOURCE_LINE_FIRST is diff --git a/gcc/fold-const.c b/gcc/fold-const.c index aa99e40..c97213a 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -6023,7 +6023,7 @@ fold (expr) t1 = distribute_bit_expr (code, type, arg0, arg1); if (t1 != NULL_TREE) return t1; - /* Simplify ((int)c & 0x377) into (int)c, if c is unsigned char. */ + /* Simplify ((int)c & 0377) into (int)c, if c is unsigned char. */ if (TREE_CODE (arg1) == INTEGER_CST && TREE_CODE (arg0) == NOP_EXPR && TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (arg0, 0)))) { |