8sa1-gcc/gcc/testsuite/gcc.c-torture/execute/920501-4.c

7 lines
200 B
C
Raw Normal View History

1997-08-19 03:34:40 -04:00
#ifndef NO_LABEL_VALUES
x(int i){static const void*j[]={&&x,&&y,&&z};goto*j[i];x:return 2;y:return 3;z:return 5;}
main(){if(x(0)!=2||x(1)!=3|x(2)!=5)abort();exit(0);}
#else
main(){ exit (0); }
#endif