aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/gcc.dg/vect/no-scevccp-outer-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/gcc.dg/vect/no-scevccp-outer-2.c')
-rw-r--r--gcc-4.8.1/gcc/testsuite/gcc.dg/vect/no-scevccp-outer-2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/gcc.dg/vect/no-scevccp-outer-2.c b/gcc-4.8.1/gcc/testsuite/gcc.dg/vect/no-scevccp-outer-2.c
deleted file mode 100644
index 13b37883c..000000000
--- a/gcc-4.8.1/gcc/testsuite/gcc.dg/vect/no-scevccp-outer-2.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/* { dg-do compile } */
-/* { dg-require-effective-target vect_int } */
-
-#define N 40
-
-int
-foo (){
- int i,j;
- int diff = 0;
-
- for (i = 0; i < N; i++) {
- for (j = 0; j < N; j++) {
- diff += j;
- }
- }
- return diff;
-}
-
-/* { dg-final { scan-tree-dump-times "OUTER LOOP VECTORIZED" 1 "vect" } } */
-/* { dg-final { cleanup-tree-dump "vect" } } */