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 | 0665a5f1f5716a69982f4bcd654e5ace975d0c0a (patch) | |
tree | 67856963d43737337cb4c9c2d7940989d9e16341 /lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp | |
parent | f39f379f9ec2e2908c89fdc809c9665c7484edb1 (diff) |
* Code Cleanups
* Introduce RAV to allow stream I/O instead of using printValue
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1710 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp')
-rw-r--r-- | lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp index 07ac10f1b4..cfe0fe4ba0 100644 --- a/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp +++ b/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); |