diff options
-rw-r--r-- | llvm/test/CodeGen/X86/cmp0.ll | 21 | ||||
-rw-r--r-- | llvm/test/CodeGen/X86/cmp1.ll | 7 |
2 files changed, 19 insertions, 9 deletions
diff --git a/llvm/test/CodeGen/X86/cmp0.ll b/llvm/test/CodeGen/X86/cmp0.ll index de893745bae..4878448800c 100644 --- a/llvm/test/CodeGen/X86/cmp0.ll +++ b/llvm/test/CodeGen/X86/cmp0.ll @@ -1,7 +1,24 @@ -; RUN: llc < %s -march=x86-64 | grep -v cmp +; RUN: llc < %s -march=x86-64 | FileCheck %s -define i64 @foo(i64 %x) { +define i64 @test0(i64 %x) nounwind { %t = icmp eq i64 %x, 0 %r = zext i1 %t to i64 ret i64 %r +; CHECK: test0: +; CHECK: testq %rdi, %rdi +; CHECK: sete %al +; CHECK: movzbl %al, %eax +; CHECK: ret } + +define i64 @test1(i64 %x) nounwind { + %t = icmp slt i64 %x, 1 + %r = zext i1 %t to i64 + ret i64 %r +; CHECK: test1: +; CHECK: testq %rdi, %rdi +; CHECK: setle %al +; CHECK: movzbl %al, %eax +; CHECK: ret +} + diff --git a/llvm/test/CodeGen/X86/cmp1.ll b/llvm/test/CodeGen/X86/cmp1.ll deleted file mode 100644 index d4aa399ae95..00000000000 --- a/llvm/test/CodeGen/X86/cmp1.ll +++ /dev/null @@ -1,7 +0,0 @@ -; RUN: llc < %s -march=x86-64 | grep -v cmp - -define i64 @foo(i64 %x) { - %t = icmp slt i64 %x, 1 - %r = zext i1 %t to i64 - ret i64 %r -} |