The zerofill directive needs a newline after it.

llvm-svn: 33327
diff --git a/llvm/lib/Target/X86/X86AsmPrinter.cpp b/llvm/lib/Target/X86/X86AsmPrinter.cpp
index 97ef671..5c28fac 100644
--- a/llvm/lib/Target/X86/X86AsmPrinter.cpp
+++ b/llvm/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;
         }
       }