summaryrefslogtreecommitdiffstats
path: root/polly/test/CodeGen/OpenMP/parallel_loop_simple2.c
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/OpenMP/parallel_loop_simple2.c')
-rw-r--r--polly/test/CodeGen/OpenMP/parallel_loop_simple2.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/polly/test/CodeGen/OpenMP/parallel_loop_simple2.c b/polly/test/CodeGen/OpenMP/parallel_loop_simple2.c
deleted file mode 100644
index 2fb50ebc2c8..00000000000
--- a/polly/test/CodeGen/OpenMP/parallel_loop_simple2.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#define N 1024
-
-float C[N], X[N];
-
-float parallel_loop_simple2() {
- int j;
-
- for (j = 0; j < N; j++)
- C[j] = j;
-
- for (j = 0; j < N; j++)
- X[j] += X[j];
-
- return C[42] + X[42];
-}
OpenPOWER on IntegriCloud