Skip to content

Commit

Permalink
Merge pull request eclipse-omr#7179 from dchopra001/RegStoreClob
Browse files Browse the repository at this point in the history
Make globalReg clobberable in Z iRegStoreEvaluator
  • Loading branch information
hzongaro authored Nov 16, 2023
2 parents 07a175a + df44968 commit d810fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/z/codegen/OMRTreeEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13787,7 +13787,7 @@ OMR::Z::TreeEvaluator::iRegStoreEvaluator(TR::Node * node, TR::CodeGenerator * c

if (!useLGHI)
{
globalReg = cg->evaluate(value);
globalReg = needsLGFR && noLGFgenerated ? cg->gprClobberEvaluate(value) : cg->evaluate(value);
}
else
{
Expand Down

0 comments on commit d810fcb

Please sign in to comment.