PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920501-1.c
bloba057943ce78d5eea2e8e3db47257e51f8505056c
1 /* { dg-require-effective-target untyped_assembly } */
2 int s[2];
3 x(){if(!s[0]){s[1+s[1]]=s[1];return 1;}}
4 main(){s[0]=s[1]=0;if(x(0)!=1)abort();exit(0);}