diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-10-11 02:02:05 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-10-11 02:02:05 +0000 |
commit | da0730c2d7fa979505534a5b9ddc07bee1816e2e (patch) | |
tree | daf4ebb055e8ac5ee9f977b4520855fe379a9cd6 /llvm/test/CodeGen/X86/select_const.ll | |
parent | 66304d54111e7d31db939d0263ca0d9fe61589ed (diff) | |
download | bcm5719-llvm-da0730c2d7fa979505534a5b9ddc07bee1816e2e.tar.gz bcm5719-llvm-da0730c2d7fa979505534a5b9ddc07bee1816e2e.zip |
Revert r165661, "Patch by Shuxin Yang <shuxin.llvm@gmail.com>."
It broke stage2 clang and test-suite/MultiSource/Benchmarks/mediabench/g721/g721encode.
llvm-svn: 165692
Diffstat (limited to 'llvm/test/CodeGen/X86/select_const.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/select_const.ll | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/test/CodeGen/X86/select_const.ll b/llvm/test/CodeGen/X86/select_const.ll deleted file mode 100644 index 5b2409d2396..00000000000 --- a/llvm/test/CodeGen/X86/select_const.ll +++ /dev/null @@ -1,16 +0,0 @@ -; RUN: llc < %s -mtriple=x86_64-apple-darwin10 -mcpu=corei7 | FileCheck %s - -define i64 @test1(i64 %x) nounwind { -entry: - %cmp = icmp eq i64 %x, 2 - %add = add i64 %x, 1 - %retval.0 = select i1 %cmp, i64 2, i64 %add - ret i64 %retval.0 - -; CHECK: test1: -; CHECK: leaq 1(%rdi), %rax -; CHECK: cmpq $2, %rdi -; CHECK: cmoveq %rdi, %rax -; CHECK: ret - -} |