summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-02-05 01:43:49 +0000
committerChris Lattner <sabre@nondot.org>2002-02-05 01:43:49 +0000
commit30e8fb69c5b963125cfcae7eb59a46f8bec37edb (patch)
treeb0e4c12a7951510e398339609b437debdac46d31 /llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
parent91c4a419e23cafac360a4f025f04c94c36187ac8 (diff)
downloadbcm5719-llvm-30e8fb69c5b963125cfcae7eb59a46f8bec37edb.tar.gz
bcm5719-llvm-30e8fb69c5b963125cfcae7eb59a46f8bec37edb.zip
* Code Cleanups
* Introduce RAV to allow stream I/O instead of using printValue llvm-svn: 1710
Diffstat (limited to 'llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp')
-rw-r--r--llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
index 07ac10f1b40..cfe0fe4ba02 100644
--- a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
+++ b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp
@@ -62,7 +62,7 @@ void MethodLiveVarInfo::constructBBs(const Method *M) {
BBI != BBE; ++BBI, ++POId) {
const BasicBlock *BB = *BBI; // get the current BB
- if (DEBUG_LV) { std::cerr << " For BB "; printValue(BB); cerr << ":\n"; }
+ if (DEBUG_LV) std::cerr << " For BB " << RAV(BB) << ":\n";
// create a new BBLiveVar
BBLiveVar *LVBB = new BBLiveVar(BB, POId);
OpenPOWER on IntegriCloud