From: Jonghyun Park Date: Tue, 1 Aug 2017 13:04:24 +0000 (+0900) Subject: Fix FEATURE_INTERPRETER build error X-Git-Tag: accepted/tizen/base/20180629.140029~1083^2~24^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1cf9faf736e26579903712782c32a73988a9fb21;p=platform%2Fupstream%2Fcoreclr.git Fix FEATURE_INTERPRETER build error --- diff --git a/src/vm/prestub.cpp b/src/vm/prestub.cpp index e4aeb1e..e7014be 100644 --- a/src/vm/prestub.cpp +++ b/src/vm/prestub.cpp @@ -740,7 +740,7 @@ PCODE MethodDesc::JitCompileCodeLockedEventWrapper(PrepareCodeConfig* pConfig, J // Interpretted methods skip this notification #ifdef FEATURE_INTERPRETER - if (Interpreter::InterpretationStubToMethodInfo(pJitNotificationInfo->pCode) == NULL) + if (Interpreter::InterpretationStubToMethodInfo(pCode) == NULL) #endif { // Fire an ETW event to mark the end of JIT'ing