[OpenMP] Fix D83281 issue on windows by allowing `dso_local` in CHECK
authorJohannes Doerfert <johannes@jdoerfert.de>
Wed, 29 Jul 2020 20:18:20 +0000 (15:18 -0500)
committerJohannes Doerfert <johannes@jdoerfert.de>
Wed, 29 Jul 2020 20:18:20 +0000 (15:18 -0500)
clang/test/OpenMP/declare_variant_device_isa_codegen_1.c

index baa5eb8..25fc394 100644 (file)
@@ -31,18 +31,18 @@ void avx512_saxpy(int n, float s, float *x, float *y) {
 }
 
 void caller(int n, float s, float *x, float *y) {
-  // GENERIC:     define void @{{.*}}caller
-  // GENERIC:      call void @{{.*}}base_saxpy
-  // WITHFEATURE: define void @{{.*}}caller
-  // WITHFEATURE:  call void @{{.*}}avx512_saxpy
+  // GENERIC:     define void {{.*}}caller
+  // GENERIC:      call void {{.*}}base_saxpy
+  // WITHFEATURE: define void {{.*}}caller
+  // WITHFEATURE:  call void {{.*}}avx512_saxpy
   base_saxpy(n, s, x, y);
 }
 
 __attribute__((target("avx512f"))) void variant_caller(int n, float s, float *x, float *y) {
-  // GENERIC:     define void @{{.*}}variant_caller
-  // GENERIC:      call void @{{.*}}avx512_saxpy
-  // WITHFEATURE: define void @{{.*}}variant_caller
-  // WITHFEATURE:  call void @{{.*}}avx512_saxpy
+  // GENERIC:     define void {{.*}}variant_caller
+  // GENERIC:      call void {{.*}}avx512_saxpy
+  // WITHFEATURE: define void {{.*}}variant_caller
+  // WITHFEATURE:  call void {{.*}}avx512_saxpy
   base_saxpy(n, s, x, y);
 }