diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-15 00:00:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-15 00:00:42 +0000 |
commit | f18c0e6b4b0ea4861097fe3bce6ea1c45d978c36 (patch) | |
tree | f6873c89d5a5a470564557d3e7fccaafb82bdcbc /llvm/lib/CodeGen | |
parent | 65a437fb801ab448b673ddd5061e5f6fcb3322ba (diff) | |
download | bcm5719-llvm-f18c0e6b4b0ea4861097fe3bce6ea1c45d978c36.tar.gz bcm5719-llvm-f18c0e6b4b0ea4861097fe3bce6ea1c45d978c36.zip |
remove dead method.
llvm-svn: 98526
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 6d5adb66b7f..d1f5afb7fd2 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/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. |