summaryrefslogtreecommitdiffstats
path: root/runtime/arch/mips
diff options
context:
space:
mode:
authorDragos Sbirlea <dragoss@google.com>2013-08-12 08:53:04 -0700
committerDragos Sbirlea <dragoss@google.com>2013-08-13 10:09:48 -0700
commit08bf1967611965b65ffd5de1aa603b60e7b2d6a8 (patch)
treea9272c3a767cee878fdad81207bd8037f08dd830 /runtime/arch/mips
parent73a79074c06d8b0a8c14946438c59c3821d88fe7 (diff)
downloadart-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.cc4
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;