diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-25 19:39:52 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-25 19:39:52 +0000 |
commit | 6330d5330e35c65efe3b414710818bdc043edc1c (patch) | |
tree | b3c7f201e007271a2329185dadb59ab5acc67bda /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | a9ee93ef42f2fb8d338b686767556d45fbb81a02 (diff) | |
download | bcm5719-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.cpp | 13 |
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; |