summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2011-05-06 15:31:55 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2011-05-06 15:31:55 +0000
commit0125d5056999ca4a428251ef2ced5bad34d1133b (patch)
treeb06b04cd3d2593ad4f83df26fefc0280bffdccb0 /lib
parentffa6408f9cb30cd639eb8eb71ee4aa6f48d0c7a7 (diff)
downloadexternal_llvm-0125d5056999ca4a428251ef2ced5bad34d1133b.zip
external_llvm-0125d5056999ca4a428251ef2ced5bad34d1133b.tar.gz
external_llvm-0125d5056999ca4a428251ef2ced5bad34d1133b.tar.bz2
Yet more dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp b/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
index a94c0c1..482d439 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
@@ -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);
- }
-}