4 A peephole optimizer bug in calls to __z88dk_fastcall.
12 void kputchar(unsigned char c
) __z88dk_fastcall
18 void kputs(const char *p
) __z88dk_fastcall
21 kputchar(*p
++); /* The bug resulted in the peephole optimizer optimizing out the parameter to this call */
26 const char *s
= "test";
28 ASSERT(!strcmp(s
, v
));