diff options
author | Tony Jiang <jtony@ca.ibm.com> | 2017-01-16 15:01:07 +0000 |
---|---|---|
committer | Tony Jiang <jtony@ca.ibm.com> | 2017-01-16 15:01:07 +0000 |
commit | 8da139a9fd06dbee54cccc452860e42e847501bc (patch) | |
tree | b8e7fa84a96758ab81f8b84bc377b21d319daba7 /llvm/test/CodeGen/PowerPC/i64_fp_round.ll | |
parent | 3e91519a1c21ac9343483ff2a3294ee2f5cd7142 (diff) | |
download | bcm5719-llvm-8da139a9fd06dbee54cccc452860e42e847501bc.tar.gz bcm5719-llvm-8da139a9fd06dbee54cccc452860e42e847501bc.zip |
Revert "[PowerPC] Expand ISEL instruction into if-then-else sequence."
This reverts commit 1d0e0374438ca6e153844c683826ba9b82486bb1.
llvm-svn: 292131
Diffstat (limited to 'llvm/test/CodeGen/PowerPC/i64_fp_round.ll')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/i64_fp_round.ll | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/PowerPC/i64_fp_round.ll b/llvm/test/CodeGen/PowerPC/i64_fp_round.ll index 5e959f73568..1e95dfdec71 100644 --- a/llvm/test/CodeGen/PowerPC/i64_fp_round.ll +++ b/llvm/test/CodeGen/PowerPC/i64_fp_round.ll @@ -1,5 +1,4 @@ ; RUN: llc -verify-machineinstrs -mcpu=pwr7 -mattr=-fpcvt < %s | FileCheck %s -; RUN: llc -verify-machineinstrs -mcpu=pwr7 -mattr=-fpcvt -ppc-gen-isel=false < %s | FileCheck %s --check-prefix=CHECK-NO-ISEL target datalayout = "E-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v128:128:128-n32:64" target triple = "powerpc64-unknown-linux-gnu" @@ -13,17 +12,10 @@ entry: ; Note that only parts of the sequence are checked for here, to allow ; for minor code generation differences. -;CHECK-LABEL: test -;CHECK-NO-ISEL-LABEL: test ; CHECK: sradi [[REG1:[0-9]+]], 3, 53 ; CHECK: addi [[REG2:[0-9]+]], [[REG1]], 1 ; CHECK: cmpldi [[REG2]], 1 ; CHECK: isel [[REG3:[0-9]+]], {{[0-9]+}}, 3, 1 -; CHECK-NO-ISEL: bc 12, 1, [[TRUE:.LBB[0-9]+]] -; CHECK-NO-ISEL: ori 11, 3, 0 -; CHECK-NO-ISEL-NEXT: b [[SUCCESSOR:.LBB[0-9]+]] -; CHECK-NO-ISEL-NEXT: [[TRUE]] -; CHECK-NO-ISEL-NEXT: addi 11, 4, 0 ; CHECK: std [[REG3]], -{{[0-9]+}}(1) |