2 bug-3240.c. Stack register parameters were not correctly checked for having their address taken
3 resulting in incorrect tail call optimization, thus calls where spilt local variables in the calle
4 overwrote the spilt register parameter.
15 void foo(int a
) __z88dk_callee
21 void check(char *buffer
)
24 ASSERT (buffer
[0] == 42);
30 memset(buffer
, 42, 8);