diff options
Diffstat (limited to 'src/compiler_test.cc')
-rw-r--r-- | src/compiler_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler_test.cc b/src/compiler_test.cc index 98b21422f4..f5135115b0 100644 --- a/src/compiler_test.cc +++ b/src/compiler_test.cc @@ -106,7 +106,7 @@ TEST_F(CompilerTest, DISABLED_LARGE_CompileDexLibCore) { } EXPECT_EQ(dex->NumMethodIds(), dex_cache->NumResolvedMethods()); for (size_t i = 0; i < dex_cache->NumResolvedMethods(); i++) { - Method* method = dex_cache->GetResolvedMethod(i); + AbstractMethod* method = dex_cache->GetResolvedMethod(i); EXPECT_TRUE(method != NULL) << "method_idx=" << i << " " << dex->GetMethodDeclaringClassDescriptor(dex->GetMethodId(i)) << " " << dex->GetMethodName(dex->GetMethodId(i)); |