summaryrefslogtreecommitdiffstats
path: root/polly/test/CodeGen/OpenMP/20120330-argument-use.c
diff options
context:
space:
mode:
Diffstat (limited to 'polly/test/CodeGen/OpenMP/20120330-argument-use.c')
-rw-r--r--polly/test/CodeGen/OpenMP/20120330-argument-use.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/polly/test/CodeGen/OpenMP/20120330-argument-use.c b/polly/test/CodeGen/OpenMP/20120330-argument-use.c
deleted file mode 100644
index eebd704f58c..00000000000
--- a/polly/test/CodeGen/OpenMP/20120330-argument-use.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * =============================================================================
- *
- * Filename: 20120330-argument-use.c
- *
- * Description: Polly OpenMP test case
- *
- * Test if the OpenMP subfunction uses the argument copy in
- * the OpenMP struct not the original one only available in
- * the original function.
- *
- * Run with -polly-codegen -enable-polly-openmp
- *
- * Author: Johannes Doerfert johannes@jdoerfert.de
- *
- * Created: 2012-03-30
- * Modified: 2012-03-30
- *
- * =============================================================================
- */
-
-void f(int * restrict A, int * restrict B, int n) {
- int i;
-
- for (i = 0; i < n; i++) {
- A[i] = B[i] * 2;
- }
-}
OpenPOWER on IntegriCloud