This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
gcc/*: FIx comment.
- From: "Miura Yasuyuki" <kokosabu at gmail dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Tue, 18 Sep 2007 02:32:34 +0900
- Subject: gcc/*: FIx comment.
Small correction. I noticed that these comments are reversed.
-- Yasuyuki
2007-09-18 Miura Yasuyuki <kokosabu@gmail.com>
* c-lex.c: fix comment.
Index: c-lex.c
===================================================================
--- c-lex.c (revision 128551)
+++ c-lex.c (working copy)
@@ -514,7 +514,7 @@
else
itk = itk_unsigned_long_long;
- for (; itk < itk_none; itk += 2 /* skip unsigned types */)
+ for (; itk < itk_none; itk += 2 /* skip signed types */)
{
tree upper = TYPE_MAX_VALUE (integer_types[itk]);
@@ -542,7 +542,7 @@
itk = itk_long_long;
- for (; itk < itk_none; itk += 2 /* skip signed types */)
+ for (; itk < itk_none; itk += 2 /* skip unsigned types */)
{
tree upper = TYPE_MAX_VALUE (integer_types[itk]);