mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
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:
parent
13f161c518
commit
23b9eac4cb
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user