mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-13 16:03:58 +00:00
Don't print out the MBB label for the entry mbb
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22953 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f913d3f91c
commit
1db1adbdee
@ -400,8 +400,12 @@ bool DarwinAsmPrinter::runOnMachineFunction(MachineFunction &MF) {
|
||||
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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user