projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20a6d8e
)
Print the MBB ID # along with the bb tag in the -print-machine-instrs output.
author
Chris Lattner
<sabre@nondot.org>
Tue, 3 Oct 2006 20:17:24 +0000
(20:17 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 3 Oct 2006 20:17:24 +0000
(20:17 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30708
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/MachineBasicBlock.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/MachineBasicBlock.cpp
b/lib/CodeGen/MachineBasicBlock.cpp
index de397d385761cb1bfa3922714428dac9a6d2f6b1..3b486d61ed2347d3b5b29a7d21276732415caf3b 100644
(file)
--- a/
lib/CodeGen/MachineBasicBlock.cpp
+++ b/
lib/CodeGen/MachineBasicBlock.cpp
@@
-96,7
+96,7
@@
void MachineBasicBlock::print(std::ostream &OS) const {
const BasicBlock *LBB = getBasicBlock();
if (LBB)
OS << "\n" << LBB->getName() << " (" << (const void*)this
- << ", LLVM BB @" << (const void*) LBB << "):\n";
+ << ", LLVM BB @" << (const void*) LBB << "
, ID#" << getNumber()<< "
):\n";
// Print the preds of this block according to the CFG.
if (!pred_empty()) {
OS << " Predecessors according to CFG:";