Commit 8d15f472 by Gwenole Beauchesne Committed by Jeff Law

* gcc.c-torture/execute/loop-10.c: New test.

From-SVN: r48698
parent 7a93476d
2002-01-09 Gwenole Beauchesne <bgeauchesne@mandrakesoft.com>
* gcc.c-torture/execute/loop-10.c: New test.
2002-01-09 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/compile/20010226-1.c: New test.
......
/* Reduced from PR optimization/5076, PR optimization/2847 */
static int count = 0;
static void
inc (void)
{
count++;
}
int
main (void)
{
int iNbr = 1;
int test = 0;
while (test == 0)
{
inc ();
if (iNbr == 0)
break;
else
{
inc ();
iNbr--;
}
test = 1;
}
if (count != 2)
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