summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver-inl.h
diff options
context:
space:
mode:
author Mathieu Chartier <mathieuc@google.com> 2016-10-14 16:54:05 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-10-14 16:54:05 +0000
commitcfdff144f154df876987fefb340058a975c43381 (patch)
treeb411423c3a252315fba531d80d4ddbb0780c80c1 /compiler/driver/compiler_driver-inl.h
parent4aed412037e6e7bad2cf589645449df960b88200 (diff)
parent1a5337fff2cc6cb9d563c8b32aca75f485d23373 (diff)
Merge "Move mirror::ObjectArray to ObjPtr"
Diffstat (limited to 'compiler/driver/compiler_driver-inl.h')
-rw-r--r--compiler/driver/compiler_driver-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver-inl.h b/compiler/driver/compiler_driver-inl.h
index d807fcad96..971151665a 100644
--- a/compiler/driver/compiler_driver-inl.h
+++ b/compiler/driver/compiler_driver-inl.h
@@ -98,7 +98,7 @@ inline std::pair<bool, bool> CompilerDriver::IsFastInstanceField(
DCHECK(!resolved_field->IsStatic());
ObjPtr<mirror::Class> fields_class = resolved_field->GetDeclaringClass();
bool fast_get = referrer_class != nullptr &&
- referrer_class->CanAccessResolvedField(fields_class.Ptr(),
+ referrer_class->CanAccessResolvedField(fields_class,
resolved_field,
dex_cache,
field_idx);