We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c15b23 commit 530e75dCopy full SHA for 530e75d
src/coreclr/jit/fginline.cpp
@@ -613,8 +613,7 @@ class SubstitutePlaceholdersAndDevirtualizeWalker : public GenTreeVisitor<Substi
613
if (tree->OperIs(GT_CALL))
614
{
615
GenTreeCall* call = tree->AsCall();
616
- // TODO-CQ: Drop `call->gtCallType == CT_USER_FUNC` once we have GVM devirtualization
617
- bool tryLateDevirt = call->IsDevirtualizationCandidate(m_compiler) && (call->gtCallType == CT_USER_FUNC);
+ bool tryLateDevirt = call->IsDevirtualizationCandidate(m_compiler);
618
619
#ifdef DEBUG
620
tryLateDevirt = tryLateDevirt && (JitConfig.JitEnableLateDevirtualization() == 1);
0 commit comments