diff options
author | 2016-02-04 00:34:43 +0000 | |
---|---|---|
committer | 2016-02-04 00:34:43 +0000 | |
commit | 867d63b65f653d27dc7ea87e924f47148cec22a7 (patch) | |
tree | 2038bbb25fe121bdcf3653cc32211c6e2cb88936 /runtime/class_linker.h | |
parent | 6006e2ce92fd86fdf028cd7b3afe972815b0e0f3 (diff) | |
parent | df707e406877e9c0426dd051c00933ebb331673e (diff) |
Merge "runtime: Don't skip verification for -Xverify:soft-fail"
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 7 |
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) |