summaryrefslogtreecommitdiffstats
path: root/clang/test/OpenMP/function-attr.cpp
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@apple.com>2015-10-28 02:32:19 +0000
committerAkira Hatanaka <ahatanaka@apple.com>2015-10-28 02:32:19 +0000
commit04c2e85918fef831e0d1cc3c15d5d0501b727835 (patch)
tree75e42751f311f6fa9a4a542facb14047109363cb /clang/test/OpenMP/function-attr.cpp
parent44a59f89764472e301c97faa480d461bf7c2e29b (diff)
downloadbcm5719-llvm-04c2e85918fef831e0d1cc3c15d5d0501b727835.tar.gz
bcm5719-llvm-04c2e85918fef831e0d1cc3c15d5d0501b727835.zip
Add a test case for r251476.
llvm-svn: 251477
Diffstat (limited to 'clang/test/OpenMP/function-attr.cpp')
-rw-r--r--clang/test/OpenMP/function-attr.cpp54
1 files changed, 54 insertions, 0 deletions
diff --git a/clang/test/OpenMP/function-attr.cpp b/clang/test/OpenMP/function-attr.cpp
new file mode 100644
index 00000000000..87aba40f2b7
--- /dev/null
+++ b/clang/test/OpenMP/function-attr.cpp
@@ -0,0 +1,54 @@
+// RUN: %clang_cc1 -fopenmp -x c++ -triple x86_64-apple-darwin10 -stack-protector 2 -emit-llvm -o - %s | FileCheck %s
+
+// Check that function attributes are added to the OpenMP runtime functions.
+
+template <class T>
+struct S {
+ T f;
+ S(T a) : f(a) {}
+ S() : f() {}
+ operator T() { return T(); }
+ ~S() {}
+};
+
+// CHECK: define internal void @.omp.copyprivate.copy_func(i8*, i8*) [[ATTR0:#[0-9]+]] {
+
+void foo0();
+
+int foo1() {
+ char a;
+
+#pragma omp parallel
+ a = 2;
+#pragma omp single copyprivate(a)
+ foo0();
+
+ return 0;
+}
+
+// CHECK: define internal void @.omp_task_privates_map.({{.*}}) [[ATTR3:#[0-9]+]] {
+// CHECK: define internal i32 @.omp_task_entry.({{.*}}) [[ATTR0]] {
+// CHECK: define internal i32 @.omp_task_destructor.({{.*}}) [[ATTR0]] {
+
+int foo2() {
+ S<double> s_arr[] = {1, 2};
+ S<double> var(3);
+#pragma omp task private(s_arr, var)
+ s_arr[0] = var;
+ return 0;
+}
+
+// CHECK: define internal void @.omp.reduction.reduction_func(i8*, i8*) [[ATTR0]] {
+
+float foo3(int n, float *a, float *b) {
+ int i;
+ float result;
+
+#pragma omp parallel for private(i) reduction(+:result)
+ for (i=0; i < n; i++)
+ result = result + (a[i] * b[i]);
+ return result;
+}
+
+// CHECK: attributes [[ATTR0]] = {{{.*}} sspstrong {{.*}}}
+// CHECK: attributes [[ATTR3]] = {{{.*}} sspstrong {{.*}}}
OpenPOWER on IntegriCloud