Commit bccd793e by Dale Johannesen Committed by Richard Henderson

* gcc.c-torture/execute/loop-11.c: New.

From-SVN: r48719
parent 117f9d28
2002-01-10 Dale Johannesen <dalej@apple.com>
* gcc.c-torture/execute/loop-11.c: New.
2002-01-08 Aldy Hernandez <aldyh@redhat.com> 2002-01-08 Aldy Hernandez <aldyh@redhat.com>
* gcc.dg/altivec-4.c: Add test for mtvscr, dssall, mfvscr, * gcc.dg/altivec-4.c: Add test for mtvscr, dssall, mfvscr,
......
static int a[199];
static void
foo ()
{
int i;
for (i = 198; i >= 0; i--)
a[i] = i;
}
int
main ()
{
int i;
foo ();
for (i = 0; i < 199; i++)
if (a[i] != i)
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