mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
BBVectorize: Fixup debugging statements
After the recent data-structure improvements, a couple of debugging statements were broken (printing pointer values). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176791 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
760fa5dc80
commit
76a05c93b1
@ -1771,7 +1771,7 @@ namespace {
|
|||||||
size_t MaxDepth = DAG.lookup(IJ);
|
size_t MaxDepth = DAG.lookup(IJ);
|
||||||
|
|
||||||
DEBUG(if (DebugPairSelection) dbgs() << "BBV: found DAG for pair {"
|
DEBUG(if (DebugPairSelection) dbgs() << "BBV: found DAG for pair {"
|
||||||
<< IJ.first << " <-> " << IJ.second << "} of depth " <<
|
<< *IJ.first << " <-> " << *IJ.second << "} of depth " <<
|
||||||
MaxDepth << " and size " << DAG.size() << "\n");
|
MaxDepth << " and size " << DAG.size() << "\n");
|
||||||
|
|
||||||
// At this point the DAG has been constructed, but, may contain
|
// At this point the DAG has been constructed, but, may contain
|
||||||
@ -2086,7 +2086,7 @@ namespace {
|
|||||||
|
|
||||||
DEBUG(if (DebugPairSelection)
|
DEBUG(if (DebugPairSelection)
|
||||||
dbgs() << "BBV: found pruned DAG for pair {"
|
dbgs() << "BBV: found pruned DAG for pair {"
|
||||||
<< IJ.first << " <-> " << IJ.second << "} of depth " <<
|
<< *IJ.first << " <-> " << *IJ.second << "} of depth " <<
|
||||||
MaxDepth << " and size " << PrunedDAG.size() <<
|
MaxDepth << " and size " << PrunedDAG.size() <<
|
||||||
" (effective size: " << EffSize << ")\n");
|
" (effective size: " << EffSize << ")\n");
|
||||||
if (((TTI && !UseChainDepthWithTI) ||
|
if (((TTI && !UseChainDepthWithTI) ||
|
||||||
|
Loading…
Reference in New Issue
Block a user