| Index: gcc/gcc/testsuite/gcc.dg/autopar/pr39500-1.c
|
| diff --git a/gcc/gcc/testsuite/gcc.dg/autopar/pr39500-1.c b/gcc/gcc/testsuite/gcc.dg/autopar/pr39500-1.c
|
| index 161f31da6a1d627696da3e47d4cda08d7b51ae09..6428bd062fec9fbf98e35457b62807c9ca893b30 100644
|
| --- a/gcc/gcc/testsuite/gcc.dg/autopar/pr39500-1.c
|
| +++ b/gcc/gcc/testsuite/gcc.dg/autopar/pr39500-1.c
|
| @@ -8,14 +8,14 @@ void abort (void);
|
| int main (void)
|
| {
|
| int i;
|
| - int x[1000];
|
| + int x[100000];
|
|
|
| - for (i = 0; i < 100; i++)
|
| - x[i] = x[i+100];
|
| + for (i = 0; i < 10000; i++)
|
| + x[i] = x[i+10000];
|
|
|
| - for (i = 0; i < 100; i++)
|
| + for (i = 0; i < 10000; i++)
|
| {
|
| - if (x[i] != x[i+100])
|
| + if (x[i] != x[i+10000])
|
| abort ();
|
| }
|
|
|
|
|