Skip to content

Commit

Permalink
Merge pull request #6628 from knn-k/vp_msg_fix
Browse files Browse the repository at this point in the history
Fix message output in replacing virtual guard
  • Loading branch information
0xdaryl committed Aug 5, 2022
2 parents 16e7fa8 + 11835e6 commit 754513d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/optimizer/OMRValuePropagation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7728,7 +7728,7 @@ void OMR::ValuePropagation::doDelayedTransformations()
TR::Node* oldNode = cvg->_currentTree->getNode();

// !oldNode means that the branch was already removed
if (!oldNode || !performTransformation(comp(), "%sReplacing the old guard %p with the shiny new overridden guard %p at treetop %p\n", oldNode, cvg->_newGuardNode, cvg->_currentTree))
if (!oldNode || !performTransformation(comp(), "%sReplacing the old guard %p with the shiny new overridden guard %p at treetop %p\n", OPT_DETAILS, oldNode, cvg->_newGuardNode, cvg->_currentTree))
{
continue;
}
Expand Down

0 comments on commit 754513d

Please sign in to comment.