aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/IA64/IA64AsmPrinter.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2008-09-24 22:14:23 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2008-09-24 22:14:23 +0000
commit1a9edae76b2e7cf15c5f7c36928b3701ac2ef47b (patch)
treed82adcff4e4317e4abcb578ae1fdf33e10864174 /lib/Target/IA64/IA64AsmPrinter.cpp
parentcf87a3dd015c7e2acfc0b4feff48fc7fc2a16f01 (diff)
downloadexternal_llvm-1a9edae76b2e7cf15c5f7c36928b3701ac2ef47b.zip
external_llvm-1a9edae76b2e7cf15c5f7c36928b3701ac2ef47b.tar.gz
external_llvm-1a9edae76b2e7cf15c5f7c36928b3701ac2ef47b.tar.bz2
Move actual section printing stuff to AsmPrinter from TAI reducing heap traffic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56573 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/IA64/IA64AsmPrinter.cpp')
-rw-r--r--lib/Target/IA64/IA64AsmPrinter.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Target/IA64/IA64AsmPrinter.cpp b/lib/Target/IA64/IA64AsmPrinter.cpp
index ff33125..0d04bf5 100644
--- a/lib/Target/IA64/IA64AsmPrinter.cpp
+++ b/lib/Target/IA64/IA64AsmPrinter.cpp
@@ -130,7 +130,7 @@ bool IA64AsmPrinter::runOnMachineFunction(MachineFunction &MF) {
EmitConstantPool(MF.getConstantPool());
const Function *F = MF.getFunction();
- SwitchToTextSection(TAI->SectionForGlobal(F).c_str(), F);
+ SwitchToSection(TAI->SectionForGlobal(F));
// Print out labels for the function.
EmitAlignment(5);
@@ -264,7 +264,6 @@ void IA64AsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
return;
O << "\n\n";
- std::string SectionName = TAI->SectionForGlobal(GVar);
std::string name = Mang->getValueName(GVar);
Constant *C = GVar->getInitializer();
unsigned Size = TD->getABITypeSize(C->getType());
@@ -272,7 +271,7 @@ void IA64AsmPrinter::printModuleLevelGV(const GlobalVariable* GVar) {
printVisibility(name, GVar->getVisibility());
- SwitchToDataSection(SectionName.c_str());
+ SwitchToSection(TAI->SectionForGlobal(GVar));
if (C->isNullValue() && !GVar->hasSection()) {
if (!GVar->isThreadLocal() &&