* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr51495.c
blob13b16419cb600af252aecb729c7b3b2b3a4a8105
1 /* PR rtl-optimization/51495 */
2 /* { dg-require-effective-target indirect_jumps } */
3 /* { dg-require-effective-target label_values } */
5 void bar (void);
7 int
8 foo (int i)
10 static const void *const table[] = { &&begin, &&end };
11 goto *(table[i]);
12 begin:
13 bar ();
14 end:
15 return 0;