| 12 | void recurse(unsigned long x); |
| 13 | |
| 14 | void act(volatile unsigned long *a) { |
| 15 | printf("act %ld\n", *a); |
| 16 | unsigned long b = (long)(intptr_t)(alloca(*a)); |
| 17 | if (b < *a) *a--; |
| 18 | recurse(*a); |
| 19 | } |
| 20 | |
| 21 | void recurse(volatile unsigned long x) { |
| 22 | printf("recurse %ld sp=%#lx\n", x, emscripten_stack_get_current()); |