Commit 674bc5a5 by Eric Botcazou Committed by Eric Botcazou

* gcc.dg/vect/vect-66.c: Slightly tweak 3rd loop.

From-SVN: r93887
parent feee8246
2005-01-19 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.dg/vect/vect-66.c: Slightly tweak 3rd loop.
2005-01-18 Eric Botcazou <ebotcazou@libertysurf.fr>
* g++.dg/debug/typedef3.C: New test.
......
......@@ -52,7 +52,7 @@ int main1 ()
{
for (j = 0; j < 4; j++)
{
ic[2][1][6][j] = 5;
ic[2][1][6][j+1] = 5;
}
}
......@@ -61,7 +61,7 @@ int main1 ()
{
for (j = 0; j < 4; j++)
{
if (ic[2][1][6][j] != 5)
if (ic[2][1][6][j+1] != 5)
abort();
}
}
......
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