summaryrefslogtreecommitdiff
path: root/runtime/interpreter/interpreter.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2019-03-12 14:26:22 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2019-03-12 14:26:42 +0000
commit939798e6a565a92e597136c589428e89c28bffd5 (patch)
tree3274ff355163df18cd2d7343ce0d34214f9d09c9 /runtime/interpreter/interpreter.cc
parenta55e8b5c9827cc4dc4e7f7c7ee07ef1fdafc35e0 (diff)
Revert "Revert^2 "Remove Global deopt requirement for several jvmti events""
This reverts commit a75e5892fba6d0208f33e9ab8e19e732daf94996. Reason for revert: Fails jdwp tests. Change-Id: Ic883f4f0108b07f1609c6c6a9565eae5903bfd2c
Diffstat (limited to 'runtime/interpreter/interpreter.cc')
-rw-r--r--runtime/interpreter/interpreter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter.cc b/runtime/interpreter/interpreter.cc
index 25d48c2e06..aa115623b3 100644
--- a/runtime/interpreter/interpreter.cc
+++ b/runtime/interpreter/interpreter.cc
@@ -289,7 +289,7 @@ static inline JValue Execute(
}
}
- if (!stay_in_interpreter && !self->IsForceInterpreter()) {
+ if (!stay_in_interpreter) {
jit::Jit* jit = Runtime::Current()->GetJit();
if (jit != nullptr) {
jit->MethodEntered(self, shadow_frame.GetMethod());