Add a debug counter for late-combine
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 920731-1.c
blobb11c4eeea0592fcca344f4becde25de71e2f68a7
1 /* { dg-additional-options "-std=gnu89" } */
2 f(x){int i;for(i=0;i<8&&(x&1)==0;x>>=1,i++);return i;}
3 main(){if(f(4)!=2)abort();exit(0);}