diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2018-11-29 23:36:04 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-11-29 23:36:04 +0000 |
commit | d5ae80c223a2aa51b6a54faa0f014acdd013103f (patch) | |
tree | 25b44b63625d83f36dc405d9ef9ff00b8dfc8fe3 /runtime/quick_exception_handler.cc | |
parent | f355ec703f519c3091853d85f61904be6dfb68aa (diff) | |
parent | 813a86307e1f3437ed9d17aeea2c5c6ffcda5c67 (diff) |
Merge "Use ArtMethod::GetDex{File,Cache}() more."
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 d4e3d54a99..0d570c39ae 100644 --- a/runtime/quick_exception_handler.cc +++ b/runtime/quick_exception_handler.cc @@ -227,7 +227,7 @@ void QuickExceptionHandler::FindCatch(ObjPtr<mirror::Throwable> exception) { LOG(INFO) << "Handler is upcall"; } if (handler_method_ != nullptr) { - const DexFile* dex_file = handler_method_->GetDeclaringClass()->GetDexCache()->GetDexFile(); + const DexFile* dex_file = handler_method_->GetDexFile(); int line_number = annotations::GetLineNumFromPC(dex_file, handler_method_, handler_dex_pc_); LOG(INFO) << "Handler: " << handler_method_->PrettyMethod() << " (line: " << line_number << ")"; |