diff options
| author | Bill Wendling <isanbard@gmail.com> | 2010-10-01 21:39:35 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2010-10-01 21:39:35 +0000 |
| commit | bf73fe5e8d4b24399b3adfd2eb490878558b342c (patch) | |
| tree | ae231bc4bbdb99c9593c7e9f7142ddae2010209e | |
| parent | 8d88020e920f60f12063b53f90cc1775b7d1578b (diff) | |
| download | bcm5719-llvm-bf73fe5e8d4b24399b3adfd2eb490878558b342c.tar.gz bcm5719-llvm-bf73fe5e8d4b24399b3adfd2eb490878558b342c.zip | |
Need to specify SSE4 for machines which don't have SSE4. The code checked for is generated by SSE4. Otherwise, we get something else.
llvm-svn: 115352
| -rw-r--r-- | llvm/test/CodeGen/X86/mmx-punpckhdq.ll | 6 | ||||
| -rw-r--r-- | llvm/test/CodeGen/X86/vec_insert-7.ll | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/X86/mmx-punpckhdq.ll b/llvm/test/CodeGen/X86/mmx-punpckhdq.ll index ccb98fce274..689f7bf5956 100644 --- a/llvm/test/CodeGen/X86/mmx-punpckhdq.ll +++ b/llvm/test/CodeGen/X86/mmx-punpckhdq.ll @@ -1,9 +1,9 @@ -; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 -mtriple=x86_64-apple-darwin10 | FileCheck %s +; RUN: llc < %s -march=x86 -mattr=+mmx,+sse42 -mtriple=x86_64-apple-darwin10 | FileCheck %s ; There are no MMX operations in bork; promoted to XMM. define void @bork(<1 x i64>* %x) { ; CHECK: bork -; FIXMEHECK: pextrd +; CHECK: pextrd entry: %tmp2 = load <1 x i64>* %x ; <<1 x i64>> [#uses=1] %tmp6 = bitcast <1 x i64> %tmp2 to <2 x i32> ; <<2 x i32>> [#uses=1] @@ -18,7 +18,7 @@ entry: define void @pork(x86_mmx* %x) { ; CHECK: pork -; FIXMEHECK: punpckhdq +; CHECK: punpckhdq entry: %tmp2 = load x86_mmx* %x ; <x86_mmx> [#uses=1] %tmp9 = tail call x86_mmx @llvm.x86.mmx.punpckhdq (x86_mmx %tmp2, x86_mmx %tmp2) diff --git a/llvm/test/CodeGen/X86/vec_insert-7.ll b/llvm/test/CodeGen/X86/vec_insert-7.ll index 789d2b9fd79..268b5c4bf97 100644 --- a/llvm/test/CodeGen/X86/vec_insert-7.ll +++ b/llvm/test/CodeGen/X86/vec_insert-7.ll @@ -1,12 +1,12 @@ -; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 -mtriple=i686-apple-darwin9 | FileCheck %s +; RUN: llc < %s -march=x86 -mattr=+mmx,+sse42 -mtriple=i686-apple-darwin9 | FileCheck %s ; MMX insertelement is not available; these are promoted to XMM. ; (Without SSE they are split to two ints, and the code is much better.) define x86_mmx @mmx_movzl(x86_mmx %x) nounwind { entry: ; CHECK: mmx_movzl -; FIXMEHECK: pinsrd -; FIXMEHECK: pinsrd +; CHECK: pinsrd +; CHECK: pinsrd %tmp = bitcast x86_mmx %x to <2 x i32> %tmp3 = insertelement <2 x i32> %tmp, i32 32, i32 0 ; <<2 x i32>> [#uses=1] %tmp8 = insertelement <2 x i32> %tmp3, i32 0, i32 1 ; <<2 x i32>> [#uses=1] |

