diff options
Diffstat (limited to 'runtime/interpreter/interpreter_common.cc')
-rw-r--r-- | runtime/interpreter/interpreter_common.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/interpreter/interpreter_common.cc b/runtime/interpreter/interpreter_common.cc index 404eb69829..033b4da84a 100644 --- a/runtime/interpreter/interpreter_common.cc +++ b/runtime/interpreter/interpreter_common.cc @@ -92,10 +92,6 @@ bool ShouldStayInSwitchInterpreter(ArtMethod* method) } const void* code = method->GetEntryPointFromQuickCompiledCode(); - if (code == GetQuickInstrumentationEntryPoint()) { - code = Runtime::Current()->GetInstrumentation()->GetCodeForInvoke(method); - } - return Runtime::Current()->GetClassLinker()->IsQuickToInterpreterBridge(code); } |