From 9003ae39816ca80dc72ac6dc10230e2965e62ce5 Mon Sep 17 00:00:00 2001 From: Alexey Bataev Date: Thu, 18 Jun 2015 11:26:55 +0000 Subject: [PATCH] [OPENMP] Fixed test for '#pragma omp parallel for simd'. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@240009 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/OpenMP/parallel_for_simd_codegen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/OpenMP/parallel_for_simd_codegen.cpp b/test/OpenMP/parallel_for_simd_codegen.cpp index 80c54599a3..3490b8fb16 100644 --- a/test/OpenMP/parallel_for_simd_codegen.cpp +++ b/test/OpenMP/parallel_for_simd_codegen.cpp @@ -111,7 +111,7 @@ void simple(float *a, float *b, float *c, float *d) { // Update linear vars after loop, as the loop was operating on a private version. // CHECK: [[LIN0_2:%.+]] = load i64, i64* [[LIN0]] // CHECK-NEXT: [[LIN_ADD2:%.+]] = add nsw i64 [[LIN0_2]], 27 -// CHECK-NEXT: store i64 [[LIN_ADD2]], i64* [[K_VAR]] +// CHECK-NEXT: store i64 [[LIN_ADD2]], i64* %{{.+}} // CHECK: call i32 @__kmpc_cancel_barrier(%ident_t* {{.+}}, i32 %{{.+}}) int lin = 12; -- 2.40.0