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
This commit is contained in:
Dan Gohman 2007-10-05 15:58:41 +00:00
parent 4e8e831a4e
commit 52c0253f04

View File

@ -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()) {