diff options
| author | Bill Wendling <isanbard@gmail.com> | 2011-04-14 01:46:37 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2011-04-14 01:46:37 +0000 |
| commit | 410ec4aad1605850e39153d56754492a2489b35d (patch) | |
| tree | f1ede7ae7fdf169b50db976fca7532e46872c3bb /llvm/test/CodeGen/X86/bool-zext.ll | |
| parent | 7e07d6fb69bf52b45e1a0f790135bd4746d70194 (diff) | |
| download | bcm5719-llvm-410ec4aad1605850e39153d56754492a2489b35d.tar.gz bcm5719-llvm-410ec4aad1605850e39153d56754492a2489b35d.zip | |
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.
llvm-svn: 129498
Diffstat (limited to 'llvm/test/CodeGen/X86/bool-zext.ll')
| -rw-r--r-- | llvm/test/CodeGen/X86/bool-zext.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/X86/bool-zext.ll b/llvm/test/CodeGen/X86/bool-zext.ll index 91e36b0d536..d2c30c64f23 100644 --- a/llvm/test/CodeGen/X86/bool-zext.ll +++ b/llvm/test/CodeGen/X86/bool-zext.ll @@ -1,7 +1,7 @@ ; RUN: llc < %s -march=x86-64 | FileCheck %s ; CHECK: @bar1 -; CHECK: movzx +; CHECK: movzbl ; CHECK: callq define void @bar1(i1 zeroext %v1) nounwind ssp { entry: @@ -11,7 +11,7 @@ entry: } ; CHECK: @bar2 -; CHECK-NOT: movzx +; CHECK-NOT: movzbl ; CHECK: callq define void @bar2(i8 zeroext %v1) nounwind ssp { entry: @@ -22,7 +22,7 @@ entry: ; CHECK: @bar3 ; CHECK: callq -; CHECK-NOT: movzx +; CHECK-NOT: movzbl ; CHECK-NOT: and ; CHECK: ret define zeroext i1 @bar3() nounwind ssp { |

