Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / execute / 20040302-1.c
blob07056c43f4e39a6dba3b4d1b491c13c7b79f9ccc
1 int code[]={0,0,0,0,1};
3 void foo(int x) {
4 volatile int b;
5 b = 0xffffffff;
8 void bar(int *pc) {
9 static const void *l[] = {&&lab0, &&end};
11 foo(0);
12 goto *l[*pc];
13 lab0:
14 foo(0);
15 pc++;
16 goto *l[*pc];
17 end:
18 return;
21 int main() {
22 bar(code);
23 return 0;