gcc/gcc/testsuite/gcc.c-torture/compile/xlop.c

12 lines
104 B
C

foo (a)
{
int b;
do
{
b = bar ();
a = b - 10;
}
while (a > 10);
return a;
}