forked from OSchip/llvm-project
Change a space to a tab in the assembly output of a .globl directive
for consistency. llvm-svn: 42637
This commit is contained in:
parent
12334acbfb
commit
b074f23dff
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue