Make goto-based interpreter the default interpreter.
Change-Id: Id21b57893864a72b77a78ef7df874c2c06209dc9
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc
index 48c0014..d7555dd 100644
--- a/runtime/interpreter/interpreter.cc
+++ b/runtime/interpreter/interpreter.cc
@@ -269,7 +269,7 @@
kComputedGotoImplKind // computed-goto-based interpreter implementation.
};
-static const InterpreterImplKind kInterpreterImplKind = kSwitchImpl;
+static const InterpreterImplKind kInterpreterImplKind = kComputedGotoImplKind;
static JValue Execute(Thread* self, MethodHelper& mh, const DexFile::CodeItem* code_item,
ShadowFrame& shadow_frame, JValue result_register)