The zerofill directive needs a newline after it.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33327 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp
index 97ef671..5c28fac 100644
--- a/lib/Target/X86/X86AsmPrinter.cpp
+++ b/lib/Target/X86/X86AsmPrinter.cpp
@@ -149,7 +149,7 @@
         if (const char *Directive = TAI->getZeroFillDirective()) {
           O << "\t.globl\t" << name << "\n";
           O << Directive << "__DATA__, __common, " << name << ", "
-            << Size << ", " << Align;
+            << Size << ", " << Align << "\n";
           continue;
         }
       }