From 1f8e8db8fcbe256796c380aa3784f39b334c9d74 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 9 Aug 2009 15:31:10 +0000 Subject: [PATCH] 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 --- lib/MC/MCSection.cpp | 2 ++ 1 file changed, 2 insertions(+) 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'; } //===----------------------------------------------------------------------===//