PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920731-1.c
blobde0fb58fcde24b53ca45510d8799084495c16351
1 f(x){int i;for(i=0;i<8&&(x&1)==0;x>>=1,i++);return i;}
2 main(){if(f(4)!=2)abort();exit(0);}