From 5a00f4298620af89d5552141ae4cac5b9ed6d8f6 Mon Sep 17 00:00:00 2001 From: ChenJinXin Date: Mon, 28 Jul 2025 07:56:28 +0000 Subject: [PATCH] fix bep problem introduced by partial inline opt Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICOMUE?from=project-issue Signed-off-by: ChenJinXin --- ecmascript/ecma_handle_scope.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecmascript/ecma_handle_scope.cpp b/ecmascript/ecma_handle_scope.cpp index 948c468df7..009714930b 100644 --- a/ecmascript/ecma_handle_scope.cpp +++ b/ecmascript/ecma_handle_scope.cpp @@ -77,7 +77,7 @@ void EcmaHandleScope::ClosePrimitiveScope(EcmaVM *vm) } } -uintptr_t EcmaHandleScope::NewHandle(JSThread *thread, JSTaggedType value) +uintptr_t __attribute__((noinline)) EcmaHandleScope::NewHandle(JSThread *thread, JSTaggedType value) { CHECK_NO_HANDLE_ALLOC; #if ECMASCRIPT_ENABLE_THREAD_STATE_CHECK -- Gitee