1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Removed isPredicable().

llvm-svn: 37119
This commit is contained in:
Evan Cheng 2007-05-16 20:50:23 +00:00
parent d3f1a259db
commit f7a017dfa7
2 changed files with 0 additions and 10 deletions

View File

@ -423,15 +423,6 @@ ReverseBranchCondition(std::vector<MachineOperand> &Cond) const {
return false;
}
bool ARMInstrInfo::isPredicatable(MachineInstr *MI) const {
const TargetInstrDescriptor *TID = MI->getInstrDescriptor();
if (TID->Flags & M_PREDICATED)
return true;
unsigned Opc = MI->getOpcode();
return Opc == ARM::B || Opc == ARM::tB;
}
void ARMInstrInfo::PredicateInstruction(MachineInstr *MI,
std::vector<MachineOperand> &Cond) const {
unsigned Opc = MI->getOpcode();

View File

@ -104,7 +104,6 @@ public:
virtual bool ReverseBranchCondition(std::vector<MachineOperand> &Cond) const;
// Predication support.
virtual bool isPredicatable(MachineInstr *MI) const;
virtual void PredicateInstruction(MachineInstr *MI,
std::vector<MachineOperand> &Cond) const;
};