diff options
| author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-05-30 18:42:51 +0000 |
|---|---|---|
| committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-05-30 18:42:51 +0000 |
| commit | d64af65f6d377d3c76a5a90d311be5793be75a10 (patch) | |
| tree | 18da847619028fb49fc2d2ebf3d3078a962dbf94 /llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll | |
| parent | 6dd78e49544299c6e2a4af07b568d127b3a5a991 (diff) | |
| download | bcm5719-llvm-d64af65f6d377d3c76a5a90d311be5793be75a10.tar.gz bcm5719-llvm-d64af65f6d377d3c76a5a90d311be5793be75a10.zip | |
[X86][SSE] Updated storeu fast-isel tests to match clang builtin tests
Since rL271214 the headers have no longer used the storeu intrinsic
llvm-svn: 271222
Diffstat (limited to 'llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll b/llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll index a762fa07fcd..8d7f6c33e6d 100644 --- a/llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll +++ b/llvm/test/CodeGen/X86/sse-intrinsics-fast-isel.ll @@ -1920,11 +1920,10 @@ define void @test_mm_storeu_ps(float *%a0, <4 x float> %a1) { ; X64: # BB#0: ; X64-NEXT: movups %xmm0, (%rdi) ; X64-NEXT: retq - %arg0 = bitcast float* %a0 to i8* - call void @llvm.x86.sse.storeu.ps(i8* %arg0, <4 x float> %a1) + %arg0 = bitcast float* %a0 to <4 x float>* + store <4 x float> %a1, <4 x float>* %arg0, align 1 ret void } -declare void @llvm.x86.sse.storeu.ps(i8*, <4 x float>) nounwind define void @test_mm_stream_ps(float *%a0, <4 x float> %a1) { ; X32-LABEL: test_mm_stream_ps: |

