mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Use WriteAsOperand to print BasicBlock names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78838 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1220e10f70
commit
46d505647d
@ -1639,8 +1639,8 @@ void AsmPrinter::printBasicBlockLabel(const MachineBasicBlock *MBB,
|
||||
if (const BasicBlock *BB = MBB->getBasicBlock())
|
||||
if (BB->hasName()) {
|
||||
O.PadToColumn(TAI->getCommentColumn(), 1);
|
||||
O << TAI->getCommentString() << ' '
|
||||
<< MBB->getBasicBlock()->getName();
|
||||
O << TAI->getCommentString() << ' ';
|
||||
WriteAsOperand(O, BB, /*PrintType=*/false);
|
||||
}
|
||||
|
||||
if (printColon)
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
; CHECK: _foo:
|
||||
; CHECK: L_Arr$non_lazy_ptr
|
||||
; CHECK: LBB1_1: ## cond_true
|
||||
; CHECK: LBB1_1: ## %cond_true
|
||||
|
||||
@Arr = external global [0 x i32] ; <[0 x i32]*> [#uses=1]
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user