diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-11-24 08:06:15 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-11-24 08:06:15 +0000 |
commit | d7f0810c934a7d13acb28c42d737ce58ec990ea8 (patch) | |
tree | 8d6e0b510f3eed9891ad005e2a8ee6af73fe8a0e /lib/Target | |
parent | 630382adc8d4aa8e8e54b03649bf5884d6d38e4f (diff) |
Enable predication of NEON instructions in Thumb2 mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r-- | lib/Target/ARM/ARMBaseInstrInfo.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Target/ARM/ARMBaseInstrInfo.cpp b/lib/Target/ARM/ARMBaseInstrInfo.cpp index f5ae1b4557..c92ec368a7 100644 --- a/lib/Target/ARM/ARMBaseInstrInfo.cpp +++ b/lib/Target/ARM/ARMBaseInstrInfo.cpp @@ -39,10 +39,6 @@ static cl::opt<bool> EnableARM3Addr("enable-arm-3-addr-conv", cl::Hidden, cl::desc("Enable ARM 2-addr to 3-addr conv")); -static cl::opt<bool> -PredicateNEON("predicate-neon", cl::Hidden, - cl::desc("Allow NEON instructions to be predicated")); - ARMBaseInstrInfo::ARMBaseInstrInfo(const ARMSubtarget& STI) : TargetInstrInfoImpl(ARMInsts, array_lengthof(ARMInsts)), Subtarget(STI) { @@ -417,7 +413,7 @@ bool ARMBaseInstrInfo::isPredicable(MachineInstr *MI) const { if ((TID.TSFlags & ARMII::DomainMask) == ARMII::DomainNEON) { ARMFunctionInfo *AFI = MI->getParent()->getParent()->getInfo<ARMFunctionInfo>(); - return PredicateNEON && AFI->isThumb2Function(); + return AFI->isThumb2Function(); } return true; } |