From 038b0728a39650b0521aa9dd0244c2932c7cfab6 Mon Sep 17 00:00:00 2001 From: Anna Antipina Date: Tue, 29 Aug 2023 12:45:12 +0300 Subject: [PATCH] Update template args for Call handler Signed-off-by: Anna Antipina --- runtime/interpreter/ecma-interpreter-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/interpreter/ecma-interpreter-inl.h b/runtime/interpreter/ecma-interpreter-inl.h index 0b488acb9..ba8a9e3e1 100644 --- a/runtime/interpreter/ecma-interpreter-inl.h +++ b/runtime/interpreter/ecma-interpreter-inl.h @@ -437,7 +437,7 @@ public: this->template CallInterpreterStackless, FORMAT, /* is_dynamic = */ true, /* is_range= */ false, /* accept_acc= */ false, - /* initobj= */ false>(method); + /* initobj= */ false, /* call= */ true>(method); if (UNLIKELY(js_thread->HasPendingException())) { return; } @@ -531,7 +531,7 @@ public: this->template CallInterpreterStackless, FORMAT, /* is_dynamic = */ true, /* is_range= */ false, /* accept_acc= */ false, - /* initobj= */ true>(method); + /* initobj= */ true, /* call= */ true>(method); if (UNLIKELY(thread->HasPendingException())) { return; } -- Gitee