summaryrefslogtreecommitdiff
path: root/compiler/optimizing/builder.cc
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2015-12-08 22:33:23 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-12-08 22:33:23 +0000
commiteb5ddd7b02ce2d25d4f28f85a13aac628526e1c1 (patch)
tree8f655b382e73222e70e30daaeedc3999014aa7ae /compiler/optimizing/builder.cc
parent2433d4e17c3006b8262a0d9421e201fc84777208 (diff)
parentdae24142127c64551142a50423085aabdb0a6060 (diff)
Merge "ART: Check invoke-interface earlier in verifier"
Diffstat (limited to 'compiler/optimizing/builder.cc')
-rw-r--r--compiler/optimizing/builder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/builder.cc b/compiler/optimizing/builder.cc
index 8e75bdcdc9..2bbf500a98 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(),