From 52c0253f04e9641436f0997b95a0c60266da3c26 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 5 Oct 2007 15:58:41 +0000 Subject: [PATCH] Change a few more spaces to tabs in assembly output. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42638 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86AsmPrinter.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/X86/X86AsmPrinter.cpp b/lib/Target/X86/X86AsmPrinter.cpp index 7855e50e43d..17bcaac90c3 100644 --- a/lib/Target/X86/X86AsmPrinter.cpp +++ b/lib/Target/X86/X86AsmPrinter.cpp @@ -213,7 +213,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) { case GlobalValue::LinkOnceLinkage: case GlobalValue::WeakLinkage: if (Subtarget->isTargetDarwin()) { - O << "\t.globl " << name << "\n" + O << "\t.globl\t" << name << "\n" << "\t.weak_definition " << name << "\n"; SwitchToDataSection(".section __DATA,__const_coal,coalesced", I); } else if (Subtarget->isTargetCygMing()) { @@ -221,7 +221,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) { name + ",\"aw\""); SwitchToDataSection(SectionName.c_str(), I); - O << "\t.globl " << name << "\n" + O << "\t.globl\t" << name << "\n" << "\t.linkonce same_size\n"; } else { std::string SectionName("\t.section\t.llvm.linkonce.d." + @@ -239,7 +239,7 @@ bool X86SharedAsmPrinter::doFinalization(Module &M) { // their name or something. For now, just emit them as external. case GlobalValue::ExternalLinkage: // If external or appending, declare as a global symbol - O << "\t.globl " << name << "\n"; + O << "\t.globl\t" << name << "\n"; // FALL THROUGH case GlobalValue::InternalLinkage: { if (I->isConstant()) {