2 bug-3249.c. A check for the possibility of tail-call optimization in codegen assumed that code is generated for a function (as opposed to initialization of file-scope objects),
3 resulting in a segfault when initializing file-scope static objects in non-intrinsic named address spaces from the Embedded C standard.
10 void set_RAM_bank1(void) { tmp
= 1; }
12 #if defined(__SDCC_mcs51)
14 #elif !defined(PORT_HOST)
15 __addressmod set_RAM_bank1 DATA
;
20 DATA
int addendum1_ram
= 2;
25 ASSERT (addendum1_ram
== 2);