diff options
author | 2014-05-30 16:46:04 +0000 | |
---|---|---|
committer | 2014-05-30 16:46:04 +0000 | |
commit | b7f02280f7f56ae94fe7f01e161be0b725b6e4a9 (patch) | |
tree | 5fdb2a6e703c57890e9c35e8efd82a60a3156069 /runtime/quick_exception_handler.cc | |
parent | ac70051a6f97025b8a93390b2b5a62e491fc77ca (diff) | |
parent | cf4035a4c41ccfcc3e89a0cee25f5218a11b0705 (diff) |
Merge "ART: Use StackReference in Quick Stack Frame"
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r-- | runtime/quick_exception_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/quick_exception_handler.cc b/runtime/quick_exception_handler.cc index 8300195d58..243818c4a2 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -42,7 +42,7 @@ void QuickExceptionHandler::FindCatch(const ThrowLocation& throw_location, CatchBlockStackVisitor visitor(self_, context_, &exception_ref, this); visitor.WalkStack(true); - mirror::ArtMethod* catch_method = *handler_quick_frame_; + mirror::ArtMethod* catch_method = handler_quick_frame_->AsMirrorPtr(); if (kDebugExceptionDelivery) { if (catch_method == nullptr) { LOG(INFO) << "Handler is upcall"; |