Art Haas wrote:

Hi.

I've been building parrot for a while, and this problem has just started
in the last day or two. The 'imcc.y' file doesn't agree with bison ...

$ cd languages/imcc
$ make
bison -v -y -d -o imcparser.c imcc.y
imcc.y:530.10-531.19: type clash on default action: <i> != <>
Does this patch help:

--- imcc.y Sun Dec 1 12:46:53 2002
+++ /home/lt/src/parrot-leo/languages/imcc/imcc.y Tue Dec 3 11:57:03 2002
@@ -527,7 +527,7 @@
| statements statement
;

-statement: {clear_state(); }
+statement: {clear_state(); $$=0; }
instruction
;

leo

Reply via email to