From a2d9f4069339a5d70dcad740ebbaf7d63ad17821 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Thu, 31 Jul 2003 17:38:52 +0000 Subject: [PATCH] I think local symbols in X86 GAS have to start with .L, not just .; so I have changed the basic block markers to start with .L. I also broke up a >80char line. llvm-svn: 7452 --- llvm/lib/Target/X86/Printer.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/llvm/lib/Target/X86/Printer.cpp b/llvm/lib/Target/X86/Printer.cpp index 24e64e492ce4..adb296fdb6c9 100644 --- a/llvm/lib/Target/X86/Printer.cpp +++ b/llvm/lib/Target/X86/Printer.cpp @@ -431,7 +431,7 @@ bool Printer::runOnMachineFunction(MachineFunction &MF) { for (MachineFunction::const_iterator I = MF.begin(), E = MF.end(); I != E; ++I) { // Print a label for the basic block. - O << ".BB" << NumberForBB[I->getBasicBlock()] << ":\t# " + O << ".LBB" << NumberForBB[I->getBasicBlock()] << ":\t# " << I->getBasicBlock()->getName() << "\n"; for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end(); II != E; ++II) { @@ -485,11 +485,13 @@ void Printer::printOp(const MachineOperand &MO, ValueMapTy::const_iterator i = NumberForBB.find(MO.getVRegValue()); assert (i != NumberForBB.end() && "Could not find a BB I previously put in the NumberForBB map!"); - O << ".BB" << i->second << " # PC rel: " << MO.getVRegValue()->getName(); + O << ".LBB" << i->second << " # PC rel: " << MO.getVRegValue()->getName(); } return; case MachineOperand::MO_GlobalAddress: - if (!elideOffsetKeyword) O << "OFFSET "; O << Mang->getValueName(MO.getGlobal()); + if (!elideOffsetKeyword) + O << "OFFSET "; + O << Mang->getValueName(MO.getGlobal()); return; case MachineOperand::MO_ExternalSymbol: O << MO.getSymbolName();