cvsuser 04/04/23 07:09:33
Modified: imcc reg_alloc.c
Log:
remove a warning
Revision Changes Path
1.14 +5 -2 parrot/imcc/reg_alloc.c
Index: reg_alloc.c
===================================================================
RCS file: /cvs/public/parrot/imcc/reg_alloc.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -w -r1.13 -r1.14
--- reg_alloc.c 23 Apr 2004 09:20:31 -0000 1.13
+++ reg_alloc.c 23 Apr 2004 14:09:33 -0000 1.14
@@ -315,12 +315,14 @@
continue;
if (r->color == first_color) {
warning(interpreter, "allocate_non_interfering",
- "couldn't find a color for register type %c", typ);
+ "color %d for register type %c in use",
+ first_color, typ);
goto out;
}
}
/*
- * no scan reglist for small ranged non-interfering regs of that typ
+ * now scan reglist for small ranged non-interfering regs
+ * of that typ
*/
bb_index = last_line = -1;
for (i = 0; i < n; i++) {
@@ -354,6 +356,7 @@
first_color--;
}
out:
+ ;
}
}
#endif