Remove dead code.

llvm-svn: 198624
This commit is contained in:
Rafael Espindola 2014-01-06 18:14:34 +00:00
parent e0e3fee19b
commit a32cd9b466

View File

@ -41,14 +41,6 @@ FunctionPass *llvm::createXCoreFrameToArgsOffsetEliminationPass() {
return new XCoreFTAOElim();
}
static inline bool isImmU6(unsigned val) {
return val < (1 << 6);
}
static inline bool isImmU16(unsigned val) {
return val < (1 << 16);
}
bool XCoreFTAOElim::runOnMachineFunction(MachineFunction &MF) {
const XCoreInstrInfo &TII =
*static_cast<const XCoreInstrInfo*>(MF.getTarget().getInstrInfo());