Don't prefix section directives with a tab. Doing so causes blank lines to

be emitted to the .s file.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28189 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-05-09 05:19:59 +00:00
parent 13f161c518
commit 23b9eac4cb

View File

@ -123,7 +123,7 @@ void AsmPrinter::SwitchToDataSection(const char *NewSection,
if (GV && GV->hasSection())
NS = SwitchToSectionDirective + GV->getSection();
else
NS = std::string("\t")+NewSection;
NS = NewSection;
if (CurrentSection != NS) {
CurrentSection = NS;