summaryrefslogtreecommitdiff
path: root/runtime/interpreter/interpreter_switch_impl-inl.h
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2022-07-23 15:43:10 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2022-07-25 09:23:56 +0000
commitb86527a04011bbc97cbb1ce80c515e3b720dc5b5 (patch)
treef324db89bed00432256d08019a323a7c47ae077d /runtime/interpreter/interpreter_switch_impl-inl.h
parentb01f2487747e5d8f0e4aeea990a976d4212dea5a (diff)
Reland "Use the thread local cache in interpreter / unresolved entrypoints"
This reverts commit 27aecbb0180a98a672a8ab96b763d0864105d266. Reason for revert: Removed obsolete DCHECK. Change-Id: I993e509b6e79c7436fd1b6dec5e2d466eaffbd1a
Diffstat (limited to 'runtime/interpreter/interpreter_switch_impl-inl.h')
-rw-r--r--runtime/interpreter/interpreter_switch_impl-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter_switch_impl-inl.h b/runtime/interpreter/interpreter_switch_impl-inl.h
index 62bf7d8fa3..2858daf968 100644
--- a/runtime/interpreter/interpreter_switch_impl-inl.h
+++ b/runtime/interpreter/interpreter_switch_impl-inl.h
@@ -353,7 +353,7 @@ class InstructionHandler {
template<InvokeType type, bool is_range>
HANDLER_ATTRIBUTES bool HandleInvoke() {
- bool success = DoInvoke<type, is_range, do_access_check, /*is_mterp=*/ false>(
+ bool success = DoInvoke<type, is_range, do_access_check>(
Self(), shadow_frame_, inst_, inst_data_, ResultRegister());
return PossiblyHandlePendingExceptionOnInvoke(!success);
}