summaryrefslogtreecommitdiff
path: root/gcc/fold-const.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-09 15:07:36 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-06-09 15:07:36 +0000
commit959abd38dafcc8c6b6d05b591dc73f32916bca71 (patch)
treee2d59db0a416bdccf9b509a892d3f916dcf057cb /gcc/fold-const.c
parentd1fde434b0130735c91f93b5553f1251f03c4050 (diff)
downloadgcc-959abd38dafcc8c6b6d05b591dc73f32916bca71.tar.gz
* fold-const.c (fold): Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67664 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r--gcc/fold-const.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c
index aa99e40aaac..c97213a66e1 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))))
{