summaryrefslogtreecommitdiff
path: root/runtime/mirror/art_method-inl.h
diff options
context:
space:
mode:
author Ian Rogers <irogers@google.com> 2014-01-08 17:19:03 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2014-01-08 17:19:03 +0000
commit0cb50e58bcdab321378df3b86f1e914d30992b5b (patch)
tree560146dfd200432b3e0cb83827e40e08bb1b67a8 /runtime/mirror/art_method-inl.h
parent4c863edfe99dd63550ee462d77820a007ec40a7d (diff)
parent5ddb4104ac605d66693b55b79f26f8b8a5505e63 (diff)
Merge "Remove intialized static storage from dex cache."
Diffstat (limited to 'runtime/mirror/art_method-inl.h')
-rw-r--r--runtime/mirror/art_method-inl.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/runtime/mirror/art_method-inl.h b/runtime/mirror/art_method-inl.h
index c9bf1609a0..088f616d41 100644
--- a/runtime/mirror/art_method-inl.h
+++ b/runtime/mirror/art_method-inl.h
@@ -73,12 +73,6 @@ inline ObjectArray<Class>* ArtMethod::GetDexCacheResolvedTypes() const {
OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_resolved_types_), false);
}
-inline ObjectArray<StaticStorageBase>* ArtMethod::GetDexCacheInitializedStaticStorage() const {
- return GetFieldObject<ObjectArray<StaticStorageBase>*>(
- OFFSET_OF_OBJECT_MEMBER(ArtMethod, dex_cache_initialized_static_storage_),
- false);
-}
-
inline uint32_t ArtMethod::GetCodeSize() const {
DCHECK(!IsRuntimeMethod() && !IsProxyMethod()) << PrettyMethod(this);
uintptr_t code = reinterpret_cast<uintptr_t>(GetEntryPointFromCompiledCode());