From 219705131d5f6911d4b40fcfdcc614a7f3a5e035 Mon Sep 17 00:00:00 2001 From: Evan Cheng Date: Fri, 9 Mar 2007 08:29:08 +0000 Subject: [PATCH] Print preds / succs BB numbers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35040 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/MachineBasicBlock.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp index bef2502089e..e38047b277e 100644 --- a/lib/CodeGen/MachineBasicBlock.cpp +++ b/lib/CodeGen/MachineBasicBlock.cpp @@ -126,7 +126,7 @@ void MachineBasicBlock::print(std::ostream &OS) const { if (!pred_empty()) { OS << " Predecessors according to CFG:"; for (const_pred_iterator PI = pred_begin(), E = pred_end(); PI != E; ++PI) - OS << " " << *PI; + OS << " " << *PI << " (#" << (*PI)->getNumber() << ")"; OS << "\n"; } @@ -139,7 +139,7 @@ void MachineBasicBlock::print(std::ostream &OS) const { if (!succ_empty()) { OS << " Successors according to CFG:"; for (const_succ_iterator SI = succ_begin(), E = succ_end(); SI != E; ++SI) - OS << " " << *SI; + OS << " " << *SI << " (#" << (*SI)->getNumber() << ")"; OS << "\n"; } } -- 2.34.1