for (MachineFunction::const_iterator I = MF.begin(), E = MF.end();
I != E; ++I) {
// Print a label for the basic block.
- O << ".LBB" << CurrentFnName << "_" << I->getNumber() << ":\t"
- << CommentString << " " << I->getBasicBlock()->getName() << "\n";
+ if (I != MF.begin()) {
+ O << ".LBB" << CurrentFnName << "_" << I->getNumber() << ":\t";
+ if (!I->getBasicBlock()->getName().empty())
+ O << CommentString << " " << I->getBasicBlock()->getName();
+ O << "\n";
+ }
for (MachineBasicBlock::const_iterator II = I->begin(), E = I->end();
II != E; ++II) {
// Print the assembly for the instruction.