未验证 提交 bb650672 编写于 作者: B Brian Sullivan 提交者: GitHub

Fix an issue with GTF_CALL_M_EXP_RUNTIME_LOOKUP using gtCallMoreFlags instead...

Fix an issue with GTF_CALL_M_EXP_RUNTIME_LOOKUP using gtCallMoreFlags instead of incorrectly using gtFlags. (#47788)
上级 4709b833
......@@ -4506,17 +4506,17 @@ struct GenTreeCall final : public GenTree
void SetExpRuntimeLookup()
{
gtFlags |= GTF_CALL_M_EXP_RUNTIME_LOOKUP;
gtCallMoreFlags |= GTF_CALL_M_EXP_RUNTIME_LOOKUP;
}
void ClearExpRuntimeLookup()
{
gtFlags &= ~GTF_CALL_M_EXP_RUNTIME_LOOKUP;
gtCallMoreFlags &= ~GTF_CALL_M_EXP_RUNTIME_LOOKUP;
}
bool IsExpRuntimeLookup() const
{
return (gtFlags & GTF_CALL_M_EXP_RUNTIME_LOOKUP) != 0;
return (gtCallMoreFlags & GTF_CALL_M_EXP_RUNTIME_LOOKUP) != 0;
}
unsigned gtCallMoreFlags; // in addition to gtFlags
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册