summaryrefslogtreecommitdiffstats
path: root/clang/test/OpenMP/for_ast_print.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-06-17 17:20:53 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-06-17 17:20:53 +0000
commita566efbec9d971deee9e61db100ac97f9256cea4 (patch)
treebe7595225ebdb855b7ff3dbf57c8eef00820f2d8 /clang/test/OpenMP/for_ast_print.cpp
parentc200b1256343938053658a784c6f3262fd125c25 (diff)
downloadbcm5719-llvm-a566efbec9d971deee9e61db100ac97f9256cea4.tar.gz
bcm5719-llvm-a566efbec9d971deee9e61db100ac97f9256cea4.zip
Revert "[OPENMP] Initial support for '#pragma omp for'."
This reverts commit r211096. Looks like it broke the msvc build: SemaOpenMP.cpp(140) : error C4519: default template arguments are only allowed on a class template llvm-svn: 211113
Diffstat (limited to 'clang/test/OpenMP/for_ast_print.cpp')
-rw-r--r--clang/test/OpenMP/for_ast_print.cpp54
1 files changed, 0 insertions, 54 deletions
diff --git a/clang/test/OpenMP/for_ast_print.cpp b/clang/test/OpenMP/for_ast_print.cpp
deleted file mode 100644
index 359ddf71b0e..00000000000
--- a/clang/test/OpenMP/for_ast_print.cpp
+++ /dev/null
@@ -1,54 +0,0 @@
-// RUN: %clang_cc1 -verify -fopenmp=libiomp5 -ast-print %s | FileCheck %s
-// RUN: %clang_cc1 -fopenmp=libiomp5 -x c++ -std=c++11 -emit-pch -o %t %s
-// RUN: %clang_cc1 -fopenmp=libiomp5 -std=c++11 -include-pch %t -fsyntax-only -verify %s -ast-print | FileCheck %s
-// expected-no-diagnostics
-
-#ifndef HEADER
-#define HEADER
-
-void foo() {}
-
-template <class T, int N>
-T tmain(T argc) {
- T b = argc, c, d, e, f, g;
- static T a;
-// CHECK: static T a;
-#pragma omp for
-// CHECK-NEXT: #pragma omp for
- for (int i=0; i < 2; ++i) a=2;
-// CHECK-NEXT: for (int i = 0; i < 2; ++i)
-// CHECK-NEXT: a = 2;
-#pragma omp parallel
-#pragma omp for private(argc,b),firstprivate(c, d),lastprivate(d,f) collapse(N)
- for (int i = 0; i < 10; ++i)
- for (int j = 0; j < 10; ++j)foo();
-// CHECK-NEXT: #pragma omp parallel
-// CHECK-NEXT: #pragma omp for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N)
-// CHECK-NEXT: for (int i = 0; i < 10; ++i)
-// CHECK-NEXT: for (int j = 0; j < 10; ++j)
-// CHECK-NEXT: foo();
- return T();
-}
-
-int main(int argc, char **argv) {
- int b = argc, c, d, e, f, g;
- static int a;
-// CHECK: static int a;
-#pragma omp for
-// CHECK-NEXT: #pragma omp for
- for (int i=0; i < 2; ++i)a=2;
-// CHECK-NEXT: for (int i = 0; i < 2; ++i)
-// CHECK-NEXT: a = 2;
-#pragma omp parallel
-#pragma omp for private(argc,b),firstprivate(argv, c),lastprivate(d,f) collapse(2)
- for (int i = 0; i < 10; ++i)
- for (int j = 0; j < 10; ++j)foo();
-// CHECK-NEXT: #pragma omp parallel
-// CHECK-NEXT: #pragma omp for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2)
-// CHECK-NEXT: for (int i = 0; i < 10; ++i)
-// CHECK-NEXT: for (int j = 0; j < 10; ++j)
-// CHECK-NEXT: foo();
- return (tmain<int, 5>(argc) + tmain<char, 1>(argv[0][0]));
-}
-
-#endif
OpenPOWER on IntegriCloud