diff options
author | 2017-08-17 16:10:09 +0100 | |
---|---|---|
committer | 2017-08-29 11:29:31 +0100 | |
commit | 5122e6ba34d46851cd89f2ad55bf6bb067e038d6 (patch) | |
tree | e96ba37b6451be7a06d930b0274251cac35ce05e /runtime/class_linker_test.cc | |
parent | 02cb397857c979dffae95e2db2678a72ec407cf0 (diff) |
ART: Remove ArtMethod::dex_cache_resolved_methods_.
Test: m test-art-host-gtest
Test: testrunner.py --host
Test: testrunner.py --target on Nexus 6P
Test: Repeat the above tests with ART_HEAP_POISONING=true
Test: Build aosp_mips64-eng
Change-Id: I9cd0b8aa5001542b0863cccfca4f9c1cd4d25396
Diffstat (limited to 'runtime/class_linker_test.cc')
-rw-r--r-- | runtime/class_linker_test.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/class_linker_test.cc b/runtime/class_linker_test.cc index 5e9707c062..f887b8ed42 100644 --- a/runtime/class_linker_test.cc +++ b/runtime/class_linker_test.cc @@ -245,11 +245,6 @@ class ClassLinkerTest : public CommonRuntimeTest { EXPECT_TRUE(method->GetDeclaringClass() != nullptr); EXPECT_TRUE(method->GetName() != nullptr); EXPECT_TRUE(method->GetSignature() != Signature::NoSignature()); - - EXPECT_TRUE(method->HasDexCacheResolvedMethods(kRuntimePointerSize)); - EXPECT_TRUE(method->HasSameDexCacheResolvedMethods( - method->GetDeclaringClass()->GetDexCache()->GetResolvedMethods(), - kRuntimePointerSize)); } void AssertField(ObjPtr<mirror::Class> klass, ArtField* field) |