From 72c878ef862c88a2037ff0fa6530a9750fd7ff9f Mon Sep 17 00:00:00 2001 From: yangliping Date: Tue, 12 Aug 2025 20:16:12 +0800 Subject: [PATCH] sync code Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/ICSMTQ?from=project-issue Signed-off-by: yangliping --- ecmascript/js_runtime_options.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ecmascript/js_runtime_options.h b/ecmascript/js_runtime_options.h index 49a7475819..f0775e920e 100644 --- a/ecmascript/js_runtime_options.h +++ b/ecmascript/js_runtime_options.h @@ -1971,16 +1971,6 @@ public: return enableMemoryAnalysis_; } - void SetCheckPgoVersion(bool value) - { - checkPgoVersion_ = value; - } - - bool IsCheckPgoVersion() const - { - return checkPgoVersion_; - } - void SetEnableJITPGO(bool value) { enableJITPGO_ = value; @@ -2011,6 +2001,16 @@ public: return enableAOTPGO_; } + void SetCheckPgoVersion(bool value) + { + checkPgoVersion_ = value; + } + + bool IsCheckPgoVersion() const + { + return checkPgoVersion_; + } + void SetEnableJitFastCompile(bool value) { enableJitFastCompile_ = value; -- Gitee