summaryrefslogtreecommitdiff
path: root/runtime/quick_exception_handler.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2014-05-30 16:46:04 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-05-30 16:46:04 +0000
commitb7f02280f7f56ae94fe7f01e161be0b725b6e4a9 (patch)
tree5fdb2a6e703c57890e9c35e8efd82a60a3156069 /runtime/quick_exception_handler.cc
parentac70051a6f97025b8a93390b2b5a62e491fc77ca (diff)
parentcf4035a4c41ccfcc3e89a0cee25f5218a11b0705 (diff)
Merge "ART: Use StackReference in Quick Stack Frame"
Diffstat (limited to 'runtime/quick_exception_handler.cc')
-rw-r--r--runtime/quick_exception_handler.cc2
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";