summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen
diff options
context:
space:
mode:
authorRuchira Sasanka <sasanka@students.uiuc.edu>2001-10-18 23:58:08 +0000
committerRuchira Sasanka <sasanka@students.uiuc.edu>2001-10-18 23:58:08 +0000
commit6b1d2691c60c6e78cc4488a653f7a9883658d727 (patch)
tree281212c27cefaf4ffe74025bbf1fff208b6912d6 /llvm/lib/CodeGen
parentc00a4343bed49ba4d88cc747a90ff358f9cf5431 (diff)
downloadbcm5719-llvm-6b1d2691c60c6e78cc4488a653f7a9883658d727.tar.gz
bcm5719-llvm-6b1d2691c60c6e78cc4488a653f7a9883658d727.zip
no major change
llvm-svn: 914
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r--llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
index acf6585779e..4b6a0f96505 100644
--- a/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
+++ b/llvm/lib/CodeGen/RegAlloc/PhyRegAlloc.cpp
@@ -128,8 +128,10 @@ void PhyRegAlloc::addInterference(const Value *const Def,
//the live range of this var interferes with this call
if( isCallInst ) {
LROfVar->addCallInterference( (const Instruction *const) Def );
- // cout << "\n ++Added Call Interf to set:";
- //LROfVar->printSet();
+ if( DEBUG_RA) {
+ cout << "\n ++Added Call Interf to set:";
+ LROfVar->printSet();
+ }
}
}
else if(DEBUG_RA > 1) {
OpenPOWER on IntegriCloud