Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit ac18d9a

Browse files
committed
format
1 parent 43056b5 commit ac18d9a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/jit/importer.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18682,7 +18682,7 @@ void Compiler::impDevirtualizeCall(GenTreeCall* call,
1868218682
call->gtFlags &= ~GTF_CALL_VIRT_VTABLE;
1868318683
call->gtFlags &= ~GTF_CALL_VIRT_STUB;
1868418684
call->gtCallMethHnd = derivedMethod;
18685-
call->gtCallType = CT_USER_FUNC;
18685+
call->gtCallType = CT_USER_FUNC;
1868618686

1868718687
// Virtual calls include an implicit null check, which we may
1868818688
// now need to make explicit. Not sure yet if we can restrict
@@ -18722,9 +18722,7 @@ void Compiler::impDevirtualizeCall(GenTreeCall* call,
1872218722

1872318723
// Look up the new call info.
1872418724
CORINFO_CALL_INFO derivedCallInfo;
18725-
eeGetCallInfo(&derivedResolvedToken, nullptr,
18726-
addVerifyFlag(CORINFO_CALLINFO_ALLOWINSTPARAM),
18727-
&derivedCallInfo);
18725+
eeGetCallInfo(&derivedResolvedToken, nullptr, addVerifyFlag(CORINFO_CALLINFO_ALLOWINSTPARAM), &derivedCallInfo);
1872818726

1872918727
// Update the call.
1873018728
call->gtCallMoreFlags &= ~GTF_CALL_M_VIRTSTUB_REL_INDIRECT;

0 commit comments

Comments
 (0)