OSDN Git Service

* fold-const.c (fold): Fix a comment typo.
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Jun 2003 15:07:36 +0000 (15:07 +0000)
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 9 Jun 2003 15:07:36 +0000 (15:07 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67664 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/fold-const.c

index f07c4d5..91346e0 100644 (file)
@@ -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
index aa99e40..c97213a 100644 (file)
@@ -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))))
        {