diff options
author | Chris Lattner <sabre@nondot.org> | 2009-11-07 06:19:20 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-11-07 06:19:20 +0000 |
commit | 147f0500f9f9d9e0091dc61347b094334280fd83 (patch) | |
tree | 43014287f7fde2806d3ee322d4064238d35ad185 /test/CodeGen/X86/cmp0.ll | |
parent | a1c6ba05e0a2b1e604f2cae702a60cf8e568d40b (diff) | |
download | external_llvm-147f0500f9f9d9e0091dc61347b094334280fd83.zip external_llvm-147f0500f9f9d9e0091dc61347b094334280fd83.tar.gz external_llvm-147f0500f9f9d9e0091dc61347b094334280fd83.tar.bz2 |
merge cmp1 into cmp0 and filecheckize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86345 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/cmp0.ll')
-rw-r--r-- | test/CodeGen/X86/cmp0.ll | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/test/CodeGen/X86/cmp0.ll b/test/CodeGen/X86/cmp0.ll index de89374..48784488 100644 --- a/test/CodeGen/X86/cmp0.ll +++ b/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 +} + |