cpplib.c (convert_string): Use `0x00ff', not `0x00ffU'.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Tue, 8 Dec 1998 09:00:26 +0000 (09:00 +0000)
committerDave Brolley <brolley@gcc.gnu.org>
Tue, 8 Dec 1998 09:00:26 +0000 (04:00 -0500)
Tue Dec  8 11:58:51 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
* cpplib.c (convert_string): Use `0x00ff', not `0x00ffU'.

From-SVN: r24182

gcc/ChangeLog
gcc/cpplib.c

index 78a1b393dfa94b2ded7ee6b6fcfd7849e3d40516..10fc71bcf12e8be04d8e85623ededb3630e5d364 100644 (file)
@@ -1,3 +1,7 @@
+Tue Dec  8 11:58:51 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
+
+       * cpplib.c (convert_string): Use `0x00ff', not `0x00ffU'.
+
 Tue Dec  8 09:28:36 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * dbxout.c: If USG is defined use gstab.h, even if HAVE_STAB_H is set.
index 8d408d0048c0bec743e26cdccd0aad7d815318a2..a751ae7be4898377a31b375469ce0c2ebb7774d3 100644 (file)
@@ -3246,7 +3246,7 @@ convert_string (pfile, result, in, limit, handle_escapes)
          if (handle_escapes)
            {
              char *bpc = (char *) in;
-             int i = (U_CHAR) cpp_parse_escape (pfile, &bpc, 0x00ffU);
+             int i = (U_CHAR) cpp_parse_escape (pfile, &bpc, 0x00ff);
              in = (U_CHAR *) bpc;
              if (i >= 0)
                *result++ = (U_CHAR)c;