From eb71b306be17fd4c8a11b1ef5b983a922e6e8f2a Mon Sep 17 00:00:00 2001 From: Like Date: Mon, 14 Jul 2025 16:50:50 +0800 Subject: [PATCH] fix: stub.an compile inconsistency Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICM6LO?from=project-issue Signed-off-by: Like Change-Id: I04fae92217e9ecb57247827e340d32bc03877fe4 --- ecmascript/js_runtime_options.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ecmascript/js_runtime_options.h b/ecmascript/js_runtime_options.h index f29b0abf7d..39eca03425 100644 --- a/ecmascript/js_runtime_options.h +++ b/ecmascript/js_runtime_options.h @@ -2077,12 +2077,12 @@ public: void SetConcurrentCompile(bool value) { - concurrentCompile = value; + concurrentCompile_ = value; } bool IsConcurrentCompile() const { - return concurrentCompile; + return concurrentCompile_; } void SetStoreBarrierOpt(bool value) @@ -2549,7 +2549,7 @@ private: bool asyncLoadAbc_ {true}; bool asyncLoadAbcTest_ {false}; bool forceDump_ {true}; - bool concurrentCompile {true}; + bool concurrentCompile_ {false}; bool aotHasException_ {false}; bool enableInlinePropertyOptimization_ {NEXT_OPTIMIZATION_BOOL}; bool enableLdObjValueOpt_ {true}; -- Gitee