# New Ticket Created by Matt Kraai
# Please include the string: [perl #52008]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=52008 >
Howdy,
The return value of ig_test in compilers/imcc/reg_alloc.c changed from
an int to an unsigned int, but the return type in the comment
preceding the function definition wasn't updated. Running
"make headerizer" (or applying the attached patch) changes it to the
correct type.
--
Matt
commit 27d824326915bedd93d2bf1ad9dee91a7822c18f
Author: Matt Kraai <[EMAIL PROTECTED]>
Date: Wed Mar 19 16:29:54 2008 -0700
Run "make headerizer"
diff --git a/compilers/imcc/reg_alloc.c b/compilers/imcc/reg_alloc.c
index c0cc39d..efaab9a 100644
--- a/compilers/imcc/reg_alloc.c
+++ b/compilers/imcc/reg_alloc.c
@@ -199,7 +199,7 @@ ig_set(int i, int j, int N, ARGIN(unsigned int *graph))
/*
-=item C<int ig_test>
+=item C<unsigned int ig_test>
RT#48260: Not yet documented!!!