summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-25 19:39:52 +0000
committerChris Lattner <sabre@nondot.org>2010-01-25 19:39:52 +0000
commit6330d5330e35c65efe3b414710818bdc043edc1c (patch)
treeb3c7f201e007271a2329185dadb59ab5acc67bda /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
parenta9ee93ef42f2fb8d338b686767556d45fbb81a02 (diff)
downloadbcm5719-llvm-6330d5330e35c65efe3b414710818bdc043edc1c.tar.gz
bcm5719-llvm-6330d5330e35c65efe3b414710818bdc043edc1c.zip
sink an arm specific method out of asmprinter into the ARMAsmPrinter and
rename it to avoid shadowing. llvm-svn: 94440
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
index fe2ef7adebb..292fcdb10c5 100644
--- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1529,19 +1529,6 @@ void AsmPrinter::printPICJumpTableSetLabel(unsigned uid,
<< '-' << *GetJTISymbol(uid) << '\n';
}
-void AsmPrinter::printPICJumpTableSetLabel(unsigned uid, unsigned uid2,
- const MachineBasicBlock *MBB) const {
- if (!MAI->getSetDirective())
- return;
-
- O << MAI->getSetDirective() << ' ' << MAI->getPrivateGlobalPrefix()
- << getFunctionNumber() << '_' << uid << '_' << uid2
- << "_set_" << MBB->getNumber() << ','
- << *GetMBBSymbol(MBB->getNumber())
- << '-' << MAI->getPrivateGlobalPrefix() << "JTI" << getFunctionNumber()
- << '_' << uid << '_' << uid2 << '\n';
-}
-
void AsmPrinter::printVisibility(MCSymbol *Sym, unsigned Visibility) const {
MCSymbolAttr Attr = MCSA_Invalid;
OpenPOWER on IntegriCloud