aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/MC/MCSection.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-09 15:31:10 +0000
committerChris Lattner <sabre@nondot.org>2009-08-09 15:31:10 +0000
commitf4c2eee251597e552e83685ba634896aeb390130 (patch)
tree9f63e2310aa301c10f6f9fb1f15d0071a8c5c8d6 /llvm/lib/MC/MCSection.cpp
parentd9631912cf6cb944560f4ac37434e9c42da8ee82 (diff)
downloadllvm-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.cpp2
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';
}
//===----------------------------------------------------------------------===//