summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMAsmPrinter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r--lib/Target/ARM/ARMAsmPrinter.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp
index f688407d69..0127c48836 100644
--- a/lib/Target/ARM/ARMAsmPrinter.cpp
+++ b/lib/Target/ARM/ARMAsmPrinter.cpp
@@ -489,19 +489,6 @@ void ARMAsmPrinter::EmitStartOfAsmFile(Module &M) {
SectionKind::getText());
OutStreamer.SwitchSection(StaticInitSect);
}
-
- // Compiling with debug info should not affect the code
- // generation! Since some of the data sections are first switched
- // to only in ASMPrinter::doFinalization(), the debug info
- // sections would come before the data sections in the object
- // file. This is problematic, since PC-relative loads have to use
- // different instruction sequences in order to reach global data
- // in the same object file.
- OutStreamer.SwitchSection(getObjFileLowering().getCStringSection());
- OutStreamer.SwitchSection(getObjFileLowering().getDataSection());
- OutStreamer.SwitchSection(getObjFileLowering().getDataCommonSection());
- OutStreamer.SwitchSection(getObjFileLowering().getDataBSSSection());
- OutStreamer.SwitchSection(getObjFileLowering().getNonLazySymbolPointerSection());
}
// Use unified assembler syntax.