summaryrefslogtreecommitdiffstats
path: root/clang/test/OpenMP/sections_codegen.cpp
diff options
context:
space:
mode:
authorAlexey Bataev <a.bataev@hotmail.com>2015-09-15 12:52:43 +0000
committerAlexey Bataev <a.bataev@hotmail.com>2015-09-15 12:52:43 +0000
commit25e5b4465494ff106fec9b5623e9d74e6b242e79 (patch)
treeb9e0e6b8773322f22b9c385b4e1c4783a5f95717 /clang/test/OpenMP/sections_codegen.cpp
parent7d4038dc5a0a6095324d3f1462fc4402a8a6eac3 (diff)
downloadbcm5719-llvm-25e5b4465494ff106fec9b5623e9d74e6b242e79.tar.gz
bcm5719-llvm-25e5b4465494ff106fec9b5623e9d74e6b242e79.zip
[OPENMP] Emit __kmpc_cancel_barrier() and code for 'cancellation point' only if 'cancel' is found.
Patch improves codegen for OpenMP constructs. If the OpenMP region does not have internal 'cancel' construct, a call to 'void __kmpc_barrier()' runtime function is generated for all implicit/explicit barriers. If the region has inner 'cancel' directive, then ``` if (__kmpc_cancel_barrier()) exit from outer construct; ``` code is generated. Also, the code for 'canellation point' directive is not generated if parent directive does not have 'cancel' directive. llvm-svn: 247681
Diffstat (limited to 'clang/test/OpenMP/sections_codegen.cpp')
-rw-r--r--clang/test/OpenMP/sections_codegen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/OpenMP/sections_codegen.cpp b/clang/test/OpenMP/sections_codegen.cpp
index 2c257e83ae3..9c7ce214f70 100644
--- a/clang/test/OpenMP/sections_codegen.cpp
+++ b/clang/test/OpenMP/sections_codegen.cpp
@@ -95,8 +95,8 @@ int main() {
// CHECK: call void @__kmpc_end_single(
// CHECK-NEXT: br label %[[END]]
// CHECK: [[END]]
-// CHECK-NEXT: call i32 @__kmpc_cancel_barrier(%{{.+}}* [[IMPLICIT_BARRIER_SINGLE_LOC]],
-// CHECK: call i32 @__kmpc_cancel_barrier(
+// CHECK-NEXT: call void @__kmpc_barrier(%{{.+}}* [[IMPLICIT_BARRIER_SINGLE_LOC]],
+// CHECK: call void @__kmpc_barrier(
// CHECK: ret
// CHECK: [[TERM_LPAD]]
// CHECK: call void @__clang_call_terminate(i8*
OpenPOWER on IntegriCloud