OSDN Git Service

PR middle-end/51761
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr51495.c
1 /* PR rtl-optimization/51495 */
2
3 void bar (void);
4
5 int
6 foo (int i)
7 {
8   static const void *const table[] = { &&begin, &&end };
9   goto *(table[i]);
10 begin:
11   bar ();
12 end:
13   return 0;
14 }