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

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyAyersMS committed Feb 25, 2017
1 parent 43056b5 commit ac18d9a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/jit/importer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18682,7 +18682,7 @@ void Compiler::impDevirtualizeCall(GenTreeCall* call,
call->gtFlags &= ~GTF_CALL_VIRT_VTABLE;
call->gtFlags &= ~GTF_CALL_VIRT_STUB;
call->gtCallMethHnd = derivedMethod;
call->gtCallType = CT_USER_FUNC;
call->gtCallType = CT_USER_FUNC;

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

// Look up the new call info.
CORINFO_CALL_INFO derivedCallInfo;
eeGetCallInfo(&derivedResolvedToken, nullptr,
addVerifyFlag(CORINFO_CALLINFO_ALLOWINSTPARAM),
&derivedCallInfo);
eeGetCallInfo(&derivedResolvedToken, nullptr, addVerifyFlag(CORINFO_CALLINFO_ALLOWINSTPARAM), &derivedCallInfo);

// Update the call.
call->gtCallMoreFlags &= ~GTF_CALL_M_VIRTSTUB_REL_INDIRECT;
Expand Down

0 comments on commit ac18d9a

Please sign in to comment.