From c854a4d71562f5551022e97c29a107f2061fb9ac Mon Sep 17 00:00:00 2001 From: ChenJinXin Date: Mon, 28 Jul 2025 07:50:14 +0000 Subject: [PATCH] fix bep problem introduced by partial inline opt 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