diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-10-23 05:58:34 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-10-23 05:58:34 +0000 |
commit | b6c215b63ffd36eee5bc2850140a32b48123b2d6 (patch) | |
tree | 5aa3e95ad3059f1fc668c0e82cb513c87ab5e158 /test/CodeGen/X86/vshift-5.ll | |
parent | c869d063d47c382eb5574cdfa3a1666bde48d0a2 (diff) |
Update tests for 84931.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84932 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/vshift-5.ll')
-rw-r--r-- | test/CodeGen/X86/vshift-5.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/vshift-5.ll b/test/CodeGen/X86/vshift-5.ll index 675e33ffb33..a543f382b51 100644 --- a/test/CodeGen/X86/vshift-5.ll +++ b/test/CodeGen/X86/vshift-5.ll @@ -6,7 +6,7 @@ define void @shift5a(<4 x i32> %val, <4 x i32>* %dst, i32* %pamt) nounwind { entry: ; CHECK: shift5a: ; CHECK: movd -; CHECK: pslld +; CHECK-NEXT: pslld %amt = load i32* %pamt %tmp0 = insertelement <4 x i32> undef, i32 %amt, i32 0 %shamt = shufflevector <4 x i32> %tmp0, <4 x i32> undef, <4 x i32> zeroinitializer @@ -20,7 +20,7 @@ define void @shift5b(<4 x i32> %val, <4 x i32>* %dst, i32* %pamt) nounwind { entry: ; CHECK: shift5b: ; CHECK: movd -; CHECK: psrad +; CHECK-NEXT: psrad %amt = load i32* %pamt %tmp0 = insertelement <4 x i32> undef, i32 %amt, i32 0 %shamt = shufflevector <4 x i32> %tmp0, <4 x i32> undef, <4 x i32> zeroinitializer |