From 1286f29d22d07ff13243d2afef67a83703adacfb Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Thu, 7 May 2015 04:09:41 +0000 Subject: [PATCH] [OPENMP] Fixed test for reduction on 'sections' directive. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236692 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/OpenMP/sections_reduction_codegen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/OpenMP/sections_reduction_codegen.cpp b/test/OpenMP/sections_reduction_codegen.cpp index cf799232f2..aa56144f61 100644 --- a/test/OpenMP/sections_reduction_codegen.cpp +++ b/test/OpenMP/sections_reduction_codegen.cpp @@ -360,7 +360,7 @@ int main() { // CHECK: call void @__kmpc_critical( // CHECK: [[TO_INT:%.+]] = call i{{[0-9]+}} @{{.+}}([[S_INT_TY]]* [[VAR1_REF]]) // CHECK: [[VAR1_BOOL:%.+]] = icmp ne i{{[0-9]+}} [[TO_INT]], 0 -// CHECK: br i1 [[VAR1_BOOL]], label %[[TRUE:.+]], label %[[FALSE:.+]] +// CHECK: br i1 [[VAR1_BOOL]], label %[[TRUE:.+]], label %[[END2:.+]] // CHECK: [[TRUE]] // CHECK: [[TO_INT:%.+]] = call i{{[0-9]+}} @{{.+}}([[S_INT_TY]]* [[VAR1_PRIV]]) // CHECK: [[VAR1_REDUCTION_BOOL:%.+]] = icmp ne i{{[0-9]+}} [[TO_INT]], 0 -- 2.40.0