This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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]);


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]