index
:
agbcc
master
game boy advance c compiler
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
920731-1.c
blob: de0fb58fcde24b53ca45510d8799084495c16351 (
plain
)
1
2
f(x){int i;for(i=0;i<8&&(x&1)==0;x>>=1,i++);return i;} main(){if(f(4)!=2)abort();exit(0);}