diff options
author | Chris Lattner <sabre@nondot.org> | 2002-02-05 01:43:49 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-02-05 01:43:49 +0000 |
commit | 30e8fb69c5b963125cfcae7eb59a46f8bec37edb (patch) | |
tree | b0e4c12a7951510e398339609b437debdac46d31 /llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp | |
parent | 91c4a419e23cafac360a4f025f04c94c36187ac8 (diff) | |
download | bcm5719-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.cpp | 2 |
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); |