[MLton-commit] r4607

Wesley Terpstra MLton@mlton.org
Thu, 25 May 2006 20:23:46 -0700


There is no uint, only unsigned int
----------------------------------------------------------------------

U   mlton/branches/on-20050822-x86_64-branch/include/x86-main.h

----------------------------------------------------------------------

Modified: mlton/branches/on-20050822-x86_64-branch/include/x86-main.h
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/include/x86-main.h	2006-05-26 03:08:38 UTC (rev 4606)
+++ mlton/branches/on-20050822-x86_64-branch/include/x86-main.h	2006-05-26 03:23:45 UTC (rev 4607)
@@ -66,7 +66,7 @@
         Pointer lc_stackP;                                              \
                                                                         \
         if (DEBUG_X86CODEGEN)                                           \
-                fprintf (stderr, "MLton_jumpToSML(0x%08x) starting\n", (uint)jump); \
+                fprintf (stderr, "MLton_jumpToSML(0x%08x) starting\n", (unsigned int)jump); \
         lc_stackP = c_stackP;                                           \
         if (reserveEsp)                                                 \
                 __asm__ __volatile__                                    \
@@ -82,7 +82,7 @@
                 );                                                      \
         c_stackP = lc_stackP;                                           \
         if (DEBUG_X86CODEGEN)                                           \
-                fprintf (stderr, "MLton_jumpToSML(0x%08x) done\n", (uint)jump); \
+                fprintf (stderr, "MLton_jumpToSML(0x%08x) done\n", (unsigned int)jump); \
         return;                                                         \
 }                                                                       \
 void MLton_callFromC () {                                               \