diff options
author | 2015-10-07 16:59:56 +0000 | |
---|---|---|
committer | 2015-10-07 16:59:56 +0000 | |
commit | 9be16fe2cd19a555092512c16afde50f79e80e3d (patch) | |
tree | 28c4950dff3700f69e3d32fc496890a722cfc379 /runtime/interpreter/unstarted_runtime.cc | |
parent | f4156986d1ba5b6dd7dfe89754c8562557cd1bc5 (diff) | |
parent | 3cfa4d05afa76e19ca99ec964b535a15c73683f0 (diff) |
Merge "ART: Remove interpreter entrypoints"
Diffstat (limited to 'runtime/interpreter/unstarted_runtime.cc')
-rw-r--r-- | runtime/interpreter/unstarted_runtime.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/unstarted_runtime.cc b/runtime/interpreter/unstarted_runtime.cc index c559389dba..92b6e4fe0d 100644 --- a/runtime/interpreter/unstarted_runtime.cc +++ b/runtime/interpreter/unstarted_runtime.cc @@ -1099,7 +1099,7 @@ void UnstartedRuntime::Invoke(Thread* self, const DexFile::CodeItem* code_item, (*iter->second)(self, shadow_frame, result, arg_offset); } else { // Not special, continue with regular interpreter execution. - artInterpreterToInterpreterBridge(self, code_item, shadow_frame, result); + ArtInterpreterToInterpreterBridge(self, code_item, shadow_frame, result); } } |