diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-04-14 01:11:51 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-04-14 01:11:51 +0000 |
commit | 7e07d6fb69bf52b45e1a0f790135bd4746d70194 (patch) | |
tree | 1bcc827ee9abb95d2b51456cf3e9cca225b7e8fb /llvm/test/CodeGen/X86/promote-assert-zext.ll | |
parent | 3563aa6520a7adc67d5a79917bef9a9ae1ccb111 (diff) | |
download | bcm5719-llvm-7e07d6fb69bf52b45e1a0f790135bd4746d70194.tar.gz bcm5719-llvm-7e07d6fb69bf52b45e1a0f790135bd4746d70194.zip |
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.
llvm-svn: 129497
Diffstat (limited to 'llvm/test/CodeGen/X86/promote-assert-zext.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/promote-assert-zext.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/promote-assert-zext.ll b/llvm/test/CodeGen/X86/promote-assert-zext.ll index b582806c96a..e973c5a466e 100644 --- a/llvm/test/CodeGen/X86/promote-assert-zext.ll +++ b/llvm/test/CodeGen/X86/promote-assert-zext.ll @@ -7,7 +7,7 @@ target triple = "x86_64-apple-darwin11" ; ISel doesn't yet know how to eliminate this extra zero-extend. But until ; it knows how to do so safely, it shouldn;t eliminate it. ; CHECK: movzbl (%rdi), %eax -; CHECK: movzwl %ax, %eax +; CHECK: movzx %ax, %eax define i64 @_ZL5matchPKtPKhiR9MatchData(i8* %tmp13) nounwind { entry: |