From 172757626684b461905a9b33a18ce90f2f587d58 Mon Sep 17 00:00:00 2001 From: Matt Gardner Date: Wed, 31 Jan 2018 03:07:32 -0800 Subject: [PATCH] deps: update ChakraCore to Microsoft/ChakraCore@28cc7c2c48 [1.8>1.9] [MERGE #4620 @sigatrev] ARM64: fix in-proc jit memory leak Merge pull request #4620 from sigatrev:arm64_inproc arm32 has special handling for xdata, but arm64 handles it the same way as amd64. Reviewed-By: chakrabot --- deps/chakrashim/core/lib/Runtime/Base/FunctionBody.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/chakrashim/core/lib/Runtime/Base/FunctionBody.cpp b/deps/chakrashim/core/lib/Runtime/Base/FunctionBody.cpp index 5451d15aa30..b22cdace3b6 100644 --- a/deps/chakrashim/core/lib/Runtime/Base/FunctionBody.cpp +++ b/deps/chakrashim/core/lib/Runtime/Base/FunctionBody.cpp @@ -8867,7 +8867,7 @@ namespace Js } #endif XDataAllocator::Unregister(this->xdataInfo); -#if defined(_M_ARM32_OR_ARM64) +#if defined(_M_ARM) if (JITManager::GetJITManager()->IsOOPJITEnabled()) #endif {