Skip to content

Commit

Permalink
Fixed traceMsg in LocalAnticipatability
Browse files Browse the repository at this point in the history
Signed-off-by: jimmyk <jimmyk@ca.ibm.com>
  • Loading branch information
IBMJimmyk committed Nov 24, 2020
1 parent 70484c4 commit e1d80fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/optimizer/LocalAnticipatability.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ bool TR_LocalAnticipatability::updateAnticipatabilityForSupportedNodes(TR::Node
{
killedExpressions->set(node->getLocalIndex());
if (trace())
traceMsg(comp(), "\n330Definition #%d (n%dn) is NOT locally anticipatable in block_%d\n", node->getLocalIndex(),block->getNumber());
traceMsg(comp(), "\n330Definition #%d (n%dn) is NOT locally anticipatable in block_%d\n", node->getLocalIndex(), node->getGlobalIndex(), block->getNumber());
_info[block->getNumber()]._analysisInfo->reset(node->getLocalIndex());
}
}
Expand All @@ -760,7 +760,7 @@ bool TR_LocalAnticipatability::updateAnticipatabilityForSupportedNodes(TR::Node
flag = false;
killedExpressions->set(node->getLocalIndex());
if (trace())
traceMsg(comp(), "\n331Definition #%d (n%dn) is NOT locally anticipatable in block_%d\n", node->getLocalIndex(),block->getNumber());
traceMsg(comp(), "\n331Definition #%d (n%dn) is NOT locally anticipatable in block_%d\n", node->getLocalIndex(), node->getGlobalIndex(), block->getNumber());
_info[block->getNumber()]._analysisInfo->reset(node->getLocalIndex());
}
}
Expand Down

0 comments on commit e1d80fa

Please sign in to comment.