10 const struct _NODE
* enter
;
11 const struct _NODE
* down
;
14 const NODE node1
= {NULL
, NULL
};
16 //sdcc loops allocating space for new symbols node1 and
17 //zzz until there is no more memory, then segfaults
19 //The reference to zzz inside the declaration of zzz
20 //triggers a loop allocating space for symbols node1
22 const NODE zzz
= {&node1
, &zzz
};