diff --git a/runtime/interpreter/ecma-interpreter-inl.h b/runtime/interpreter/ecma-interpreter-inl.h index 0b488acb96906dcb011b27aa3f781f971f591144..ba8a9e3e110dcd2391f78e773ac07a00373d9dbd 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; }