diff options
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 4d35a03180..56ae30799f 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -3499,8 +3499,7 @@ bool ClassLinker::ShouldUseInterpreterEntrypoint(ArtMethod* method, const void* return true; } - if (Thread::Current()->IsForceInterpreter() || - Dbg::IsForcedInterpreterNeededForCalling(Thread::Current(), method)) { + if (Thread::Current()->IsForceInterpreter()) { // Force the use of interpreter when it is required by the debugger. return true; } |