diff options
author | Dan Gohman <gohman@apple.com> | 2009-08-12 20:56:56 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-08-12 20:56:56 +0000 |
commit | 46d505647d255410b220d7f8134053390794683e (patch) | |
tree | d8c23461d63cfa98e62612795ec77fdb46808eb4 /lib/CodeGen | |
parent | 1220e10f70f89e0f8082344646d79805edf9025d (diff) | |
download | external_llvm-46d505647d255410b220d7f8134053390794683e.zip external_llvm-46d505647d255410b220d7f8134053390794683e.tar.gz external_llvm-46d505647d255410b220d7f8134053390794683e.tar.bz2 |
Use WriteAsOperand to print BasicBlock names.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index f0aa304..6238d16 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -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) |