2 bug-3239.c. A jump was incorrectly redirected to a non-exisitng label in the peephole optimizer when the name of the callee was a prefix of the caller's name.
15 unsigned char f(unsigned char i
) __cosmic
;
17 unsigned char f_wrap_cosmic(unsigned char i
) __cosmic
25 ASSERT (f_wrap_cosmic (23) == 42);
28 unsigned char f(unsigned char i
) __cosmic
30 return i
== 23 ? 42 : 3;