As Dan pointed out, movzbl, movsbl, and friends are nicer than their alias
(movzx/movsx) because they give more information. Revert that part of the patch.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129498 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGen/X86/cmp.ll b/test/CodeGen/X86/cmp.ll
index 6e88fc1..ef5e353 100644
--- a/test/CodeGen/X86/cmp.ll
+++ b/test/CodeGen/X86/cmp.ll
@@ -38,7 +38,7 @@
; CHECK: test3:
; CHECK: testq %rdi, %rdi
; CHECK: sete %al
-; CHECK: movzx %al, %eax
+; CHECK: movzbl %al, %eax
; CHECK: ret
}
@@ -49,7 +49,7 @@
; CHECK: test4:
; CHECK: testq %rdi, %rdi
; CHECK: setle %al
-; CHECK: movzx %al, %eax
+; CHECK: movzbl %al, %eax
; CHECK: ret
}