MC: Fix MCSectionCOFF::PrintSwitchToSection
[oota-llvm.git] / lib / MC / MCInstPrinter.cpp
index 6a452c8d4a7f50fd5ae42f31ea3f8cc4c4733b33..ba71245d0184fbb61d016bba313a998b0a57f17c 100644 (file)
@@ -31,9 +31,13 @@ void MCInstPrinter::printRegName(raw_ostream &OS, unsigned RegNo) const {
 
 void MCInstPrinter::printAnnotation(raw_ostream &OS, StringRef Annot) {
   if (!Annot.empty()) {
-    if (CommentStream)
+    if (CommentStream) {
       (*CommentStream) << Annot;
-    else
+      // By definition (see MCInstPrinter.h), CommentStream must end with
+      // a newline after each comment.
+      if (Annot.back() != '\n')
+        (*CommentStream) << '\n';
+    } else
       OS << " " << MAI.getCommentString() << " " << Annot;
   }
 }