From: Bill Wendling Date: Thu, 18 Jan 2007 02:30:19 +0000 (+0000) Subject: The zerofill directive needs a newline after it. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=39e9c09763d06b3c2133bcf0d8fec02120d63b93;p=oota-llvm.git 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 97ef671b8e8..5c28fac10cf 100644 --- a/lib/Target/X86/X86AsmPrinter.cpp +++ b/lib/Target/X86/X86AsmPrinter.cpp @@ -149,7 +149,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) { if (const char *Directive = TAI->getZeroFillDirective()) { O << "\t.globl\t" << name << "\n"; O << Directive << "__DATA__, __common, " << name << ", " - << Size << ", " << Align; + << Size << ", " << Align << "\n"; continue; } }