From 06997a767e16a01e1fb55e3461e4c15e32affdd1 Mon Sep 17 00:00:00 2001 From: Martin Bohme Date: Mon, 18 Dec 2017 11:29:21 +0000 Subject: [PATCH] [X86] Use {{.*}} instead of hardcoded %1 in knot test. This makes the test more resilient and consistent with the other tests introduced in r320919. llvm-svn: 320971 --- clang/test/CodeGen/avx512f-builtins.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGen/avx512f-builtins.c b/clang/test/CodeGen/avx512f-builtins.c index 9a3bf5a..ce831d6 100644 --- a/clang/test/CodeGen/avx512f-builtins.c +++ b/clang/test/CodeGen/avx512f-builtins.c @@ -385,7 +385,7 @@ __m512d test_mm512_set1_pd(double d) __mmask16 test_mm512_knot(__mmask16 a) { // CHECK-LABEL: @test_mm512_knot - // CHECK: [[IN:%.*]] = bitcast i16 %1 to <16 x i1> + // CHECK: [[IN:%.*]] = bitcast i16 %{{.*}} to <16 x i1> // CHECK: [[NOT:%.*]] = xor <16 x i1> [[IN]], // CHECK: bitcast <16 x i1> [[NOT]] to i16 return _mm512_knot(a); -- 2.7.4