From 69ff51baa0e051aee3a2a554b31aad8f15be3d74 Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Wed, 24 Sep 2008 22:13:07 +0000 Subject: Drop obsolete hook and change all usage to new interface llvm-svn: 56572 --- llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp') diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 6e9d935e0c0..93ebf218188 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -47,11 +47,6 @@ AsmPrinter::~AsmPrinter() { E = GCMetadataPrinters.end(); I != E; ++I) delete I->second; } - -std::string AsmPrinter::getSectionForFunction(const Function &F) const { - return TAI->getTextSection(); -} - /// SwitchToTextSection - Switch to the specified text section of the executable /// if we are not already in it! @@ -331,7 +326,7 @@ void AsmPrinter::EmitJumpTableInfo(MachineJumpTableInfo *MJTI, // function body itself, otherwise the label differences won't make sense. // We should also do if the section name is NULL or function is declared in // discardable section. - SwitchToTextSection(getSectionForFunction(*F).c_str(), F); + SwitchToTextSection(TAI->SectionForGlobal(F).c_str(), F); } else { SwitchToDataSection(JumpTableDataSection); } -- cgit v1.2.3