Change a space to a tab in the assembly output of a .globl directive
authorDan Gohman <gohman@apple.com>
Fri, 5 Oct 2007 15:54:58 +0000 (15:54 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 5 Oct 2007 15:54:58 +0000 (15:54 +0000)
for consistency.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42637 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ATTAsmPrinter.cpp

index 8e52e00f47aafee519bd6ad0a262419af7deb49b..06558771240512f2bdf01b5e07a83276de7293f3 100644 (file)
@@ -126,7 +126,7 @@ bool X86ATTAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
       O << "\t.weak_definition\t" << CurrentFnName << "\n";
     } else if (Subtarget->isTargetCygMing()) {
       EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.
-      O << "\t.globl " << CurrentFnName << "\n";
+      O << "\t.globl\t" << CurrentFnName << "\n";
       O << "\t.linkonce discard\n";
     } else {
       EmitAlignment(4, F);     // FIXME: This should be parameterized somewhere.