aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/cmov.ll
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2011-04-14 01:11:51 +0000
committerBill Wendling <isanbard@gmail.com>2011-04-14 01:11:51 +0000
commitc6df9883da99915d1cfa491b381ffa703c61ed90 (patch)
treef064189fee82198866acced511351061ae599499 /test/CodeGen/X86/cmov.ll
parenteef965f04bab483a7d2fd46a7d51559197eda5cf (diff)
downloadexternal_llvm-c6df9883da99915d1cfa491b381ffa703c61ed90.zip
external_llvm-c6df9883da99915d1cfa491b381ffa703c61ed90.tar.gz
external_llvm-c6df9883da99915d1cfa491b381ffa703c61ed90.tar.bz2
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
Diffstat (limited to 'test/CodeGen/X86/cmov.ll')
-rw-r--r--test/CodeGen/X86/cmov.ll4
1 files changed, 2 insertions, 2 deletions
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 @@ define i32 @test5(i32* nocapture %P) nounwind readonly {
entry:
; CHECK: test5:
; CHECK: setg %al
-; CHECK: movzbl %al, %eax
+; CHECK: movzx %al, %eax
; CHECK: orl $-2, %eax
; CHECK: ret
@@ -135,7 +135,7 @@ define i32 @test6(i32* nocapture %P) nounwind readonly {
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]