[M3commit] CVS Update: cm3
Jay Krell
jkrell at elego.de
Fri Jun 4 17:41:45 CEST 2010
CVSROOT: /usr/cvs
Changes by: jkrell at birch. 10/06/04 17:41:45
Modified files:
cm3/m3-sys/m3cc/gcc/gcc/m3cg/: Tag: release_branch_cm3_5_8
parse.c
Log message:
Port unfortunate fix from head, unless/until a better fix is found.
The program:
MODULE Main;
PROCEDURE F1() =
PROCEDURE NestedUnused1() =
BEGIN
END NestedUnused1;
BEGIN
IF FALSE THEN
NestedUnused1();
END;
END F1;
BEGIN
F1();
END Main.
fails to link with:
Undefined symbols:
"_Main__F1__NestedUnused1.496", referenced from:
_L_1 in Main.mo
unless we do:
flag_unit_at_a_time = 0; in parse.c
More information about the M3commit
mailing list