rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr21761.c

10 lines
157 B
C

void f1()
{
long bit=0, exponent;
exponent = -exponent;
for (bit = 1; exponent; bit <<= 1)
if (exponent & bit)
exponent ^= bit;
}