OSDN Git Service

* testsuite/gcc.dg/graphite/run-id-1.c: Adjusted size of data
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Nov 2009 05:02:31 +0000 (05:02 +0000)
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 25 Nov 2009 05:02:31 +0000 (05:02 +0000)
to fit on 32-bit machines.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154578 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/gcc.dg/graphite/run-id-1.c

index 4787ac5..7766008 100644 (file)
@@ -5,7 +5,7 @@ void abort (void);
 void foo (int N)
 {
   int i, j;
-  int x[10000][10000];
+  int x[1000][1000];
 
   for (i = 0; i < N; i++)
     for (j = 0; j < N; j++)
@@ -19,7 +19,7 @@ void foo (int N)
 
 int main(void)
 {
-  foo (10000);
+  foo (1000);
 
   return 0;
 }