[X86][SSE] Updated _mm_store_ps1 test to match _mm_store1_ps

llvm-svn: 270679
This commit is contained in:
Simon Pilgrim 2016-05-25 09:20:08 +00:00
parent 4298d06d0f
commit 7b365bce6f
1 changed files with 1 additions and 1 deletions

View File

@ -651,7 +651,7 @@ void test_mm_store_ps(float* x, __m128 y) {
void test_mm_store_ps1(float* x, __m128 y) {
// CHECK-LABEL: test_mm_store_ps1
// CHECK: shufflevector <4 x float> %{{.*}}, <4 x float> %{{.*}}, <4 x i32> zeroinitializer
// CHECK: store <4 x float> %{{.*}}, <4 x float>* {{.*}}, align 16
// CHECK: call void @llvm.x86.sse.storeu.ps(i8* %{{.*}}, <4 x float> %{{.*}})
_mm_store_ps1(x, y);
}