summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/RegAlloc
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/CodeGen/RegAlloc')
-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