Change a space to a tab in the assembly output of a .globl directive

for consistency.

llvm-svn: 42637
This commit is contained in:
Dan Gohman 2007-10-05 15:54:58 +00:00
parent 12334acbfb
commit b074f23dff
1 changed files with 1 additions and 1 deletions

View 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.