From ac18d9a45c75e3b59c3ca4ee3ca5739b9b75b303 Mon Sep 17 00:00:00 2001 From: Andy Ayers Date: Fri, 24 Feb 2017 16:25:01 -0800 Subject: [PATCH] format --- src/jit/importer.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/jit/importer.cpp b/src/jit/importer.cpp index 36833696298b..fd66f1f54a7f 100644 --- a/src/jit/importer.cpp +++ b/src/jit/importer.cpp @@ -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 @@ -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;