diff options
Diffstat (limited to 'compiler/dex/verification_results.cc')
-rw-r--r-- | compiler/dex/verification_results.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/dex/verification_results.cc b/compiler/dex/verification_results.cc index d87762d417..511a787878 100644 --- a/compiler/dex/verification_results.cc +++ b/compiler/dex/verification_results.cc @@ -58,8 +58,7 @@ void VerificationResults::ProcessVerifiedMethod(verifier::MethodVerifier* method auto it = verified_methods_.find(ref); if (it != verified_methods_.end()) { // TODO: Investigate why are we doing the work again for this method and try to avoid it. - LOG(WARNING) << "Method processed more than once: " - << PrettyMethod(ref.dex_method_index, *ref.dex_file); + LOG(WARNING) << "Method processed more than once: " << ref.PrettyMethod(); if (!Runtime::Current()->UseJitCompilation()) { DCHECK_EQ(it->second->GetDevirtMap().size(), verified_method->GetDevirtMap().size()); DCHECK_EQ(it->second->GetSafeCastSet().size(), verified_method->GetSafeCastSet().size()); |