tree-optimization/116406 - ICE with int<->float punning prevention
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / jmp.c
blob814b49ea902ab74a4f5f929329a052bd84d22992
1 int
2 foo (int a)
4 if (a)
5 goto a1;
6 goto a2;
7 a1: goto a3;
8 a2: goto a4;
9 a3: goto a5;
10 a4: goto a6;
11 a5: goto a7;
12 a6: goto a8;
13 a7: goto a9;
14 a8: goto a10;
15 a9: goto a11;
16 a10: goto a12;
17 a11: goto a13;
18 a12:;
19 a13:;
20 return -a;