aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-15 00:00:42 +0000
committerChris Lattner <sabre@nondot.org>2010-03-15 00:00:42 +0000
commit54e7364e4b37a5698f1f2317bf73615b6410dbbc (patch)
treebdbc0f55f2ac6e3069c2561dd5bb9429f36986d4 /lib/CodeGen
parent06c9e71e55059936cd2697a98cc3f32d9c1acdc3 (diff)
downloadexternal_llvm-54e7364e4b37a5698f1f2317bf73615b6410dbbc.zip
external_llvm-54e7364e4b37a5698f1f2317bf73615b6410dbbc.tar.gz
external_llvm-54e7364e4b37a5698f1f2317bf73615b6410dbbc.tar.bz2
remove dead method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98526 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/AsmPrinter/AsmPrinter.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index 6d5adb6..d1f5afb 100644
--- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1556,13 +1556,6 @@ void AsmPrinter::printLabelInst(const MachineInstr *MI) const {
OutStreamer.EmitLabel(MI->getOperand(0).getMCSymbol());
}
-void AsmPrinter::printLabel(unsigned Id) const {
- MCSymbol *Sym =
- OutContext.GetOrCreateTemporarySymbol(Twine(MAI->getPrivateGlobalPrefix()) +
- "label" + Twine(Id));
- OutStreamer.EmitLabel(Sym);
-}
-
/// PrintAsmOperand - Print the specified operand of MI, an INLINEASM
/// instruction, using the specified assembler variant. Targets should
/// override this to format as appropriate.