Skip to content

Commit

Permalink
potential optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
wyrichte committed Mar 22, 2019
1 parent 022edfc commit 1739086
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Backend/GlobOptBailOut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ GlobOpt::IsLazyBailOutCurrentlyNeeded(IR::Instr * instr, Value const * src1Val,
}
// These opcodes can change the value of a field regardless
// of whether the instruction has any implicit calls.
if (OpCodeAttr::CallInstr(instr->m_opcode) || instr->IsStElemVariant() || instr->IsStFldVariant())
if (OpCodeAttr::CallInstr(instr->m_opcode))
{
return true;
}
Expand Down

0 comments on commit 1739086

Please sign in to comment.