summaryrefslogtreecommitdiff
path: root/runtime/class_linker.h
diff options
context:
space:
mode:
author Igor Murashkin <iam@google.com> 2016-02-04 00:34:43 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2016-02-04 00:34:43 +0000
commit867d63b65f653d27dc7ea87e924f47148cec22a7 (patch)
tree2038bbb25fe121bdcf3653cc32211c6e2cb88936 /runtime/class_linker.h
parent6006e2ce92fd86fdf028cd7b3afe972815b0e0f3 (diff)
parentdf707e406877e9c0426dd051c00933ebb331673e (diff)
Merge "runtime: Don't skip verification for -Xverify:soft-fail"
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r--runtime/class_linker.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h
index 9217c32fe7..71fcf296bd 100644
--- a/runtime/class_linker.h
+++ b/runtime/class_linker.h
@@ -964,9 +964,10 @@ class ClassLinker {
void CreateProxyMethod(Handle<mirror::Class> klass, ArtMethod* prototype, ArtMethod* out)
SHARED_REQUIRES(Locks::mutator_lock_);
- // Ensures that methods have the kAccPreverified bit set. We use the kAccPreverfied bit on the
- // class access flags to determine whether this has been done before.
- void EnsurePreverifiedMethods(Handle<mirror::Class> c)
+ // Ensures that methods have the kAccSkipAccessChecks bit set. We use the
+ // kAccVerificationAttempted bit on the class access flags to determine whether this has been done
+ // before.
+ void EnsureSkipAccessChecksMethods(Handle<mirror::Class> c)
SHARED_REQUIRES(Locks::mutator_lock_);
mirror::Class* LookupClassFromBootImage(const char* descriptor)