summaryrefslogtreecommitdiff
path: root/runtime/quick_exception_handler.cc
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2017-01-10 15:54:41 -0800
committerMathieu Chartier <mathieuc@google.com>2017-01-10 15:57:11 -0800
commitf5769e15aa9f058a5af987f0d1354f16f4464a7d (patch)
tree8a55c514c70a701a06102d3cbda6e4fe8a84242c /runtime/quick_exception_handler.cc
parent2e17788df086284845108c6b39954a5c74e93a69 (diff)
Move most of art::Thread to ObjPtr
Bug: 31113334 Test: test-art-host Change-Id: I73d0de3c875d3ec3d732034fdc961dae79ef4070
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 a81458fded..b809c3eb56 100644
--- a/runtime/quick_exception_handler.cc
+++ b/runtime/quick_exception_handler.cc
@@ -140,7 +140,7 @@ class CatchBlockStackVisitor FINAL : public StackVisitor {
DISALLOW_COPY_AND_ASSIGN(CatchBlockStackVisitor);
};
-void QuickExceptionHandler::FindCatch(mirror::Throwable* exception) {
+void QuickExceptionHandler::FindCatch(ObjPtr<mirror::Throwable> exception) {
DCHECK(!is_deoptimization_);
if (kDebugExceptionDelivery) {
mirror::String* msg = exception->GetDetailMessage();