Author: julianalbo
Date: Tue Aug 12 13:40:00 2008
New Revision: 30187

Modified:
   trunk/compilers/imcc/reg_alloc.c

Log:
fix an unsigned warning in imcc reg_alloc.c

Modified: trunk/compilers/imcc/reg_alloc.c
==============================================================================
--- trunk/compilers/imcc/reg_alloc.c    (original)
+++ trunk/compilers/imcc/reg_alloc.c    Tue Aug 12 13:40:00 2008
@@ -835,7 +835,7 @@
 interferes(PARROT_INTERP, ARGIN(const IMC_Unit *unit),
         ARGIN(const SymReg *r0), ARGIN(const SymReg *r1))
 {
-    unsigned int i;
+    int i;
 
     /* Registers don't interfere with themselves */
     if (r0 == r1)

Reply via email to