diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:35:19 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:35:19 +0000 |
commit | ff4c42b7c3d88595b32ccfdba648afecc0ef445d (patch) | |
tree | c57227fbe47af3f47409b8bdf9a9f47cf9917b58 /llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp | |
parent | 4fc92edcc6c2b80a277b61e8e7c6b410a69c2603 (diff) | |
download | bcm5719-llvm-ff4c42b7c3d88595b32ccfdba648afecc0ef445d.tar.gz bcm5719-llvm-ff4c42b7c3d88595b32ccfdba648afecc0ef445d.zip |
changes to make it compatible with 64bit gcc
llvm-svn: 2789
Diffstat (limited to 'llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp')
-rw-r--r-- | llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp index ab0a761b732..297b64a93c7 100644 --- a/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp +++ b/llvm/lib/Analysis/LiveVar/FunctionLiveVarInfo.cpp @@ -259,8 +259,8 @@ void FunctionLiveVarInfo::calcLiveVarSetsForBB(const BasicBlock *BB) { if (DEBUG_LV >= LV_DEBUG_Instr) { std::cerr << "\nLive var sets before/after instruction " << *MI; - cerr << " Before: "; printSet(*NewSet); cerr << "\n"; - cerr << " After : "; printSet(*SetAI); cerr << "\n"; + std::cerr << " Before: "; printSet(*NewSet); std::cerr << "\n"; + std::cerr << " After : "; printSet(*SetAI); std::cerr << "\n"; } // SetAI will be used in the next iteration |