From 60f2b77b8b7a466c7df7f179bfe8cca636f05716 Mon Sep 17 00:00:00 2001 From: Chernykh Sergey Date: Tue, 13 Aug 2024 12:14:35 +0800 Subject: [PATCH] Fix builtin inlining Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IAIVC1 Description: * Fix Math.pow builtin inlining in case (-1, Infinity) * Fix Number.is(Safe)Integer builtin inlining in boolean case Tests: All required pre-merge tests passed. Results are available in the internal CI Signed-off-by: Chernykh Sergey --- test262/ignored-test262-other-release-x64-aot-pgo.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/test262/ignored-test262-other-release-x64-aot-pgo.txt b/test262/ignored-test262-other-release-x64-aot-pgo.txt index c0b05cbf0f..50aec96e16 100644 --- a/test262/ignored-test262-other-release-x64-aot-pgo.txt +++ b/test262/ignored-test262-other-release-x64-aot-pgo.txt @@ -12,16 +12,14 @@ test262/data/other_tests/language/expressions/compound-assignment/left-hand-side #18519 test262/data/other_tests/built-ins/parseFloat/S15.1.2.3_A1_T2.js -#18520 -test262/data/other_tests/built-ins/Math/pow/applying-the-exp-operator_A8.js -test262/data/other_tests/built-ins/Math/pow/applying-the-exp-operator_A7.js -test262/data/other_tests/built-ins/Number/isInteger/arg-is-not-number.js -test262/data/other_tests/built-ins/Number/isSafeInteger/arg-is-not-number.js +#18691 test262/data/other_tests/language/expressions/compound-assignment/left-hand-side-private-reference-accessor-property-add.js test262/data/other_tests/language/expressions/compound-assignment/left-hand-side-private-reference-accessor-property-div.js test262/data/other_tests/language/expressions/compound-assignment/left-hand-side-private-reference-accessor-property-mult.js test262/data/other_tests/language/expressions/compound-assignment/left-hand-side-private-reference-accessor-property-rshift.js test262/data/other_tests/language/expressions/compound-assignment/left-hand-side-private-reference-accessor-property-srshift.js + +#18690 test262/data/other_tests/language/statements/class/elements/privatefieldget-success-2.js test262/data/other_tests/language/statements/class/elements/privatefield-on-proxy.js test262/data/other_tests/language/statements/class/elements/privategetter-on-proxy.js -- Gitee