[llvm-commits] [128742] Fix warning.

dpatel at apple.com dpatel at apple.com
Fri Jun 22 13:28:03 PDT 2007


Revision: 128742
Author:   dpatel
Date:     2007-06-22 13:28:02 -0700 (Fri, 22 Jun 2007)

Log Message:
-----------
Fix warning.

Modified Paths:
--------------
    apple-local/branches/llvm/gcc/c-lex.c

Modified: apple-local/branches/llvm/gcc/c-lex.c
===================================================================
--- apple-local/branches/llvm/gcc/c-lex.c	2007-06-22 17:28:14 UTC (rev 128741)
+++ apple-local/branches/llvm/gcc/c-lex.c	2007-06-22 20:28:02 UTC (rev 128742)
@@ -826,7 +826,7 @@
 my_cpp_num_sign_extend (cpp_num num, size_t precision)
 {
   if (num.high)
-    printf("%lu\n", num.high);
+    printf("%lu\n", (long unsigned int) num.high);
   if (!num.unsignedp)
     {
       if (precision > PART_PRECISION)





More information about the llvm-commits mailing list