From: Simon Pilgrim Date: Wed, 10 Aug 2016 09:59:49 +0000 (+0000) Subject: [X86][AVX] Ensure we only match against 1-byte alignment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1b6a1c31999553c8bf88d36b3da739bad6d75418;p=clang [X86][AVX] Ensure we only match against 1-byte alignment git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@278208 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/avx-builtins.c b/test/CodeGen/avx-builtins.c index 8851181f56..8be03c3bf2 100644 --- a/test/CodeGen/avx-builtins.c +++ b/test/CodeGen/avx-builtins.c @@ -84,14 +84,14 @@ __m256 test_mm256_blendv_ps(__m256 V1, __m256 V2, __m256 V3) { __m256d test_mm256_broadcast_pd(__m128d* A) { // CHECK-LABEL: test_mm256_broadcast_pd - // CHECK: load <2 x double>, <2 x double>* %{{.*}}, align 1 + // CHECK: load <2 x double>, <2 x double>* %{{.*}}, align 1{{$}} // CHECK: shufflevector <2 x double> %{{.*}}, <2 x double> %{{.*}}, <4 x i32> return _mm256_broadcast_pd(A); } __m256 test_mm256_broadcast_ps(__m128* A) { // CHECK-LABEL: test_mm256_broadcast_ps - // CHECK: load <4 x float>, <4 x float>* %{{.*}}, align 1 + // CHECK: load <4 x float>, <4 x float>* %{{.*}}, align 1{{$}} // CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <8 x i32> return _mm256_broadcast_ps(A); }