Commit bd524aa3 by Alexandre Oliva Committed by Alexandre Oliva

* gcc.dg/loop-1.c: New test.

From-SVN: r31750
parent 060d7bc1
2000-02-02 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* gcc.dg/loop-1.c: New test.
2000-01-26 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
* gcc.dg/unused-2.c: New test.
......
/* Copyright (C) 2000 Free Software Foundation.
Simplified from gcc/fold-const.c
by Alexandre Oliva <oliva@lsd.ic.unicamp.br> */
/* { dg-do compile } */
void
mul_double ()
{
int i, j, *prod;
for (i = 0; i < 4; i++)
{
for (j = 0; j < 4; j++)
{
*prod = 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