summaryrefslogtreecommitdiffstats
path: root/llvm/test
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/test')
-rw-r--r--llvm/test/CodeGen/X86/divide-by-constant.ll6
-rw-r--r--llvm/test/CodeGen/X86/x86-64-extend-shift.ll10
2 files changed, 3 insertions, 13 deletions
diff --git a/llvm/test/CodeGen/X86/divide-by-constant.ll b/llvm/test/CodeGen/X86/divide-by-constant.ll
index 545662fd0ff..ab3bd941495 100644
--- a/llvm/test/CodeGen/X86/divide-by-constant.ll
+++ b/llvm/test/CodeGen/X86/divide-by-constant.ll
@@ -29,9 +29,9 @@ entry:
ret i8 %div
; CHECK: test3:
-; CHECK: movzbl 8(%esp), %eax
-; CHECK-NEXT: imull $171, %eax, %eax
-; CHECK-NEXT: shrl $9, %eax
+; CHECK: imull $171, %eax, %eax
+; CHECK-NEXT: shrb %ah
+; CHECK-NEXT: movzbl %ah, %eax
; CHECK-NEXT: ret
}
diff --git a/llvm/test/CodeGen/X86/x86-64-extend-shift.ll b/llvm/test/CodeGen/X86/x86-64-extend-shift.ll
deleted file mode 100644
index 6852785fd6a..00000000000
--- a/llvm/test/CodeGen/X86/x86-64-extend-shift.ll
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
-; Formerly there were two shifts.
-
-define i64 @baz(i32 %A) nounwind {
-; CHECK: shlq $49, %rax
- %tmp1 = shl i32 %A, 17
- %tmp2 = zext i32 %tmp1 to i64
- %tmp3 = shl i64 %tmp2, 32
- ret i64 %tmp3
-}
OpenPOWER on IntegriCloud