diff options
author | 2021-10-12 14:13:25 +0100 | |
---|---|---|
committer | 2021-10-20 07:59:43 +0000 | |
commit | 327cfcf2dfe281de4ac8178da69e1e562881870d (patch) | |
tree | 7655b166c3b46d38077ef84f02234e3a122eb403 /runtime/class_linker.cc | |
parent | 685d0ef479966811ec103340ef9696f056649285 (diff) |
Use the .dm file at runtime for verification.
Bug: 112284845
Test: 674-HelloWorld-Dm
Change-Id: Icd07f86cfb2b5428186a4c086f042890eaad249b
Diffstat (limited to 'runtime/class_linker.cc')
-rw-r--r-- | runtime/class_linker.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 454a20fa11..7dd584afc8 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -4740,6 +4740,7 @@ bool ClassLinker::VerifyClassUsingOatFile(Thread* self, if (oat_file != nullptr) { ClassStatus vdex_status = oat_file->GetVdexFile()->ComputeClassStatus(self, klass); if (vdex_status >= ClassStatus::kVerifiedNeedsAccessChecks) { + VLOG(verifier) << "Vdex verification success for " << klass->PrettyClass(); oat_file_class_status = vdex_status; return true; } |