diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-09 15:31:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-09 15:31:10 +0000 |
commit | f4c2eee251597e552e83685ba634896aeb390130 (patch) | |
tree | 9f63e2310aa301c10f6f9fb1f15d0071a8c5c8d6 /llvm/lib/MC/MCSection.cpp | |
parent | d9631912cf6cb944560f4ac37434e9c42da8ee82 (diff) | |
download | llvm-f4c2eee251597e552e83685ba634896aeb390130.zip llvm-f4c2eee251597e552e83685ba634896aeb390130.tar.gz llvm-f4c2eee251597e552e83685ba634896aeb390130.tar.bz2 |
always end a section with \n on elf.
llvm-svn: 78534
Diffstat (limited to 'llvm/lib/MC/MCSection.cpp')
-rw-r--r-- | llvm/lib/MC/MCSection.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCSection.cpp b/llvm/lib/MC/MCSection.cpp index 80a80e7..65e86d3 100644 --- a/llvm/lib/MC/MCSection.cpp +++ b/llvm/lib/MC/MCSection.cpp @@ -107,6 +107,8 @@ void MCSectionELF::PrintSwitchToSection(const TargetAsmInfo &TAI, OS << ",16"; } } + + OS << '\n'; } //===----------------------------------------------------------------------===// |