aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/graphite/pr40157.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/graphite/pr40157.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/graphite/pr40157.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/graphite/pr40157.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/graphite/pr40157.c
deleted file mode 100644
index 513958fe5..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/graphite/pr40157.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/* { dg-require-effective-target int32plus } */
-/* { dg-options "-O2 -fgraphite-identity -floop-block" } */
-
-int buffer[256*256];
-int main(void)
-{
- int *dest = buffer;
- int x, y;
- for(x = 0; x < 256; x++)
- for(y = 0; y < 256; y++)
- *dest++ = 0;
- return 0;
-}