commit | 0665a5f1f5716a69982f4bcd654e5ace975d0c0a | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Feb 05 01:43:49 2002 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Feb 05 01:43:49 2002 +0000 |
tree | 67856963d43737337cb4c9c2d7940989d9e16341 | |
parent | f39f379f9ec2e2908c89fdc809c9665c7484edb1 [diff] [blame] |
* 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
diff --git a/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp b/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp index 07ac10f..cfe0fe4 100644 --- a/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp +++ b/lib/Target/SparcV9/LiveVar/FunctionLiveVarInfo.cpp
@@ -62,7 +62,7 @@ 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);