From: Chris Lattner Date: Sun, 9 Aug 2009 15:31:10 +0000 (+0000) Subject: always end a section with \n on elf. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=1f8e8db8fcbe256796c380aa3784f39b334c9d74;p=oota-llvm.git always end a section with \n on elf. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78534 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCSection.cpp b/lib/MC/MCSection.cpp index 80a80e7d8d0..65e86d3b408 100644 --- a/lib/MC/MCSection.cpp +++ b/lib/MC/MCSection.cpp @@ -107,6 +107,8 @@ void MCSectionELF::PrintSwitchToSection(const TargetAsmInfo &TAI, OS << ",16"; } } + + OS << '\n'; } //===----------------------------------------------------------------------===//