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
This commit is contained in:
Bill Wendling 2007-01-18 02:30:19 +00:00
parent 65367b26bf
commit 39e9c09763

View File

@ -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;
}
}