minor fixes
[ia32rtools.git] / tests / reg_call_tail2.expect.c
1 void __stdcall sub_test(int a1)
2 {
3   a1 += 1;  // arg_0
4   if ((u32)a1 == 0)
5     goto return_;  // arg_0
6   another_func(a1);
7   return;  // ^ tailcall argframe
8
9 return_:
10   return;
11 }
12