diff options
author | Dragos Sbirlea <dragoss@google.com> | 2013-08-12 08:53:04 -0700 |
---|---|---|
committer | Dragos Sbirlea <dragoss@google.com> | 2013-08-13 10:09:48 -0700 |
commit | 08bf1967611965b65ffd5de1aa603b60e7b2d6a8 (patch) | |
tree | a9272c3a767cee878fdad81207bd8037f08dd830 /runtime/arch/mips | |
parent | 73a79074c06d8b0a8c14946438c59c3821d88fe7 (diff) | |
download | art-08bf1967611965b65ffd5de1aa603b60e7b2d6a8.zip art-08bf1967611965b65ffd5de1aa603b60e7b2d6a8.tar.gz art-08bf1967611965b65ffd5de1aa603b60e7b2d6a8.tar.bz2 |
Work on SMALL_ART and PORTABLE working at the same time.
Change-Id: Iddedf63b6f9d908717a4d30f963e9b81a9604d49
Diffstat (limited to 'runtime/arch/mips')
-rw-r--r-- | runtime/arch/mips/entrypoints_init_mips.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/arch/mips/entrypoints_init_mips.cc b/runtime/arch/mips/entrypoints_init_mips.cc index a18079b..a0d3995 100644 --- a/runtime/arch/mips/entrypoints_init_mips.cc +++ b/runtime/arch/mips/entrypoints_init_mips.cc @@ -25,7 +25,7 @@ namespace art { extern "C" void artInterpreterToInterpreterBridge(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame, JValue* result); -extern "C" void artInterperterToCompiledCodeBridge(Thread* self, MethodHelper& mh, +extern "C" void artInterpreterToCompiledCodeBridge(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item, ShadowFrame* shadow_frame, JValue* result); @@ -138,7 +138,7 @@ void InitEntryPoints(InterpreterEntryPoints* ipoints, JniEntryPoints* jpoints, PortableEntryPoints* ppoints, QuickEntryPoints* qpoints) { // Interpreter ipoints->pInterpreterToInterpreterBridge = artInterpreterToInterpreterBridge; - ipoints->pInterpreterToCompiledCodeBridge = artInterperterToCompiledCodeBridge; + ipoints->pInterpreterToCompiledCodeBridge = artInterpreterToCompiledCodeBridge; // JNI jpoints->pDlsymLookup = art_jni_dlsym_lookup_stub; |