always end a section with \n on elf.
authorChris Lattner <sabre@nondot.org>
Sun, 9 Aug 2009 15:31:10 +0000 (15:31 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 9 Aug 2009 15:31:10 +0000 (15:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78534 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCSection.cpp

index 80a80e7d8d09d9fe6bc64b6410415635f2432a85..65e86d3b408834b51e9cb1bf49af02ffeee00958 100644 (file)
@@ -107,6 +107,8 @@ void MCSectionELF::PrintSwitchToSection(const TargetAsmInfo &TAI,
       OS << ",16";
     }
   }
+  
+  OS << '\n';
 }
 
 //===----------------------------------------------------------------------===//