| 25 | return (x + y) * z; |
| 26 | } |
| 27 | int *pointer(int *in) { |
| 28 | printf("%d\n", *in); |
| 29 | static int ret = 21; |
| 30 | return &ret; |
| 31 | } |
| 32 | |
| 33 | // This test checks that ccall restores the stack correctly to whatever it was |
| 34 | // when ccall was entered. We save the stack pointer on the heap in stackChecker |