Commit 4469640c by Andreas Schwab Committed by Jeff Law

* gcc.c-torture/execute/990604-1.c: New test.

From-SVN: r27343
parent f4926cb5
Fri Jun 4 02:25:04 1999 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* gcc.c-torture/execute/990604-1.c: New test.
Mon May 31 00:34:51 1999 Jeffrey A Law (law@cygnus.com) Mon May 31 00:34:51 1999 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/execute/990531-1.c: New test. * gcc.c-torture/execute/990531-1.c: New test.
......
int b;
void f ()
{
int i = 0;
if (b == 0)
do {
b = i;
i++;
} while (i < 10);
}
int main ()
{
f ();
if (b != 9)
abort ();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment