Have the X86 back-end emit the alias instead of what's being aliased. In most
cases, it's much nicer and more informative reading the alias.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129497 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/X86/cmov.ll b/test/CodeGen/X86/cmov.ll
index 39d9d1e..2e71ef2 100644
--- a/test/CodeGen/X86/cmov.ll
+++ b/test/CodeGen/X86/cmov.ll
@@ -121,7 +121,7 @@
entry:
; CHECK: test5:
; CHECK: setg %al
-; CHECK: movzbl %al, %eax
+; CHECK: movzx %al, %eax
; CHECK: orl $-2, %eax
; CHECK: ret
@@ -135,7 +135,7 @@
entry:
; CHECK: test6:
; CHECK: setl %al
-; CHECK: movzbl %al, %eax
+; CHECK: movzx %al, %eax
; CHECK: leal 4(%rax,%rax,8), %eax
; CHECK: ret
%0 = load i32* %P, align 4 ; <i32> [#uses=1]