Yet more dead code.

llvm-svn: 130988
This commit is contained in:
Rafael Espindola 2011-05-06 15:31:55 +00:00
parent d06c2c1b81
commit 6e4fa20efb
2 changed files with 0 additions and 17 deletions

View File

@ -400,10 +400,6 @@ namespace llvm {
/// frame.
void EmitCFIFrameMove(const MachineMove &Move) const;
/// EmitCFIFrameMoves - Emit frame instructions to describe the layout of
/// the frame.
void EmitCFIFrameMoves(const std::vector<MachineMove> &Moves) const;
//===------------------------------------------------------------------===//
// Inline Asm Support
//===------------------------------------------------------------------===//

View File

@ -232,16 +232,3 @@ void AsmPrinter::EmitCFIFrameMove(const MachineMove &Move) const {
Dst.getOffset());
}
}
/// EmitCFIFrameMoves - Emit frame instructions to describe the layout of the
/// frame.
void AsmPrinter::EmitCFIFrameMoves(const std::vector<MachineMove> &Moves) const {
for (unsigned i = 0, N = Moves.size(); i < N; ++i) {
const MachineMove &Move = Moves[i];
MCSymbol *Label = Move.getLabel();
// Throw out move if the label is invalid.
if (Label && !Label->isDefined()) continue; // Not emitted, in dead code.
EmitCFIFrameMove(Move);
}
}