diff options
author | 2017-01-30 20:20:19 +0000 | |
---|---|---|
committer | 2017-01-30 20:20:20 +0000 | |
commit | d7c4ad030c2c316f5e1b2049ff8fa925b56bee2b (patch) | |
tree | fee68e3431cd62d6f5d6da89c1e105993bfb5528 /runtime/quick_exception_handler.cc | |
parent | f22bf9f809def57c96a19d932467a175bbd9c08c (diff) | |
parent | 81356645157af44152c7b7db383596b5cf3479b5 (diff) |
Merge "Revert "Make --debuggable rely on JIT code.""
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r-- | runtime/quick_exception_handler.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 4e76951189..8d758a4a4b 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -347,11 +347,9 @@ class DeoptimizeStackVisitor FINAL : public StackVisitor { callee_method_ = method; return true; } else if (!single_frame_deopt_ && - !Runtime::Current()->IsAsyncDeoptimizeable(GetCurrentQuickFramePc())) { + !Runtime::Current()->IsDeoptimizeable(GetCurrentQuickFramePc())) { // We hit some code that's not deoptimizeable. However, Single-frame deoptimization triggered // from compiled code is always allowed since HDeoptimize always saves the full environment. - LOG(WARNING) << "Got request to deoptimize un-deoptimizable method " - << method->PrettyMethod(); FinishStackWalk(); return false; // End stack walk. } else { |