diff options
| author | 2015-12-10 15:58:19 -0800 | |
|---|---|---|
| committer | 2015-12-10 15:58:19 -0800 | |
| commit | 682857fece0425362c4fb55da611e7144c9ec092 (patch) | |
| tree | 68f85fecbbc6c13ae4ac8d80768fae4f054a7ba0 /compiler/optimizing/builder.cc | |
| parent | 99dd068563bbd460f5ba8c81249e6e55e794de5e (diff) | |
| parent | 748047de833061466e230baf374480a147568f73 (diff) | |
Merge "ART: Stash a resolved method late in the verifier"
am: 748047de83
* commit '748047de833061466e230baf374480a147568f73':
ART: Stash a resolved method late in the verifier
Diffstat (limited to 'compiler/optimizing/builder.cc')
| -rw-r--r-- | compiler/optimizing/builder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc index b156d136ca..e1404ce59c 100644 --- a/compiler/optimizing/builder.cc +++ b/compiler/optimizing/builder.cc @@ -744,7 +744,7 @@ ArtMethod* HGraphBuilder::ResolveMethod(uint16_t method_idx, InvokeType invoke_t soa.Decode<mirror::ClassLoader*>(dex_compilation_unit_->GetClassLoader()))); Handle<mirror::Class> compiling_class(hs.NewHandle(GetCompilingClass())); - ArtMethod* resolved_method = class_linker->ResolveMethod( + ArtMethod* resolved_method = class_linker->ResolveMethod<ClassLinker::kForceICCECheck>( *dex_compilation_unit_->GetDexFile(), method_idx, dex_compilation_unit_->GetDexCache(), |