diff options
| author | 2015-12-10 23:50:11 +0000 | |
|---|---|---|
| committer | 2015-12-10 23:50:11 +0000 | |
| commit | 748047de833061466e230baf374480a147568f73 (patch) | |
| tree | 68f85fecbbc6c13ae4ac8d80768fae4f054a7ba0 /compiler/driver/compiler_driver.cc | |
| parent | 1a74dc42099bd1ea4583edabef42b5a4d6f70389 (diff) | |
| parent | 42ef8ab151a3d0cbb42cb43f6841c3708d65fca3 (diff) | |
Merge "ART: Stash a resolved method late in the verifier"
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 0cad643641..82af541765 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -1902,7 +1902,7 @@ class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor { } if (resolve_fields_and_methods) { while (it.HasNextDirectMethod()) { - ArtMethod* method = class_linker->ResolveMethod( + ArtMethod* method = class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>( dex_file, it.GetMemberIndex(), dex_cache, class_loader, nullptr, it.GetMethodInvokeType(class_def)); if (method == nullptr) { @@ -1911,7 +1911,7 @@ class ResolveClassFieldsAndMethodsVisitor : public CompilationVisitor { it.Next(); } while (it.HasNextVirtualMethod()) { - ArtMethod* method = class_linker->ResolveMethod( + ArtMethod* method = class_linker->ResolveMethod<ClassLinker::kNoICCECheckForCache>( dex_file, it.GetMemberIndex(), dex_cache, class_loader, nullptr, it.GetMethodInvokeType(class_def)); if (method == nullptr) { |