diff options
Diffstat (limited to 'runtime/arch')
-rw-r--r-- | runtime/arch/stub_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/arch/stub_test.cc b/runtime/arch/stub_test.cc index bbf9a8b93c..6665897c9d 100644 --- a/runtime/arch/stub_test.cc +++ b/runtime/arch/stub_test.cc @@ -1063,7 +1063,7 @@ TEST_F(StubTest, AllocObject) { EXPECT_FALSE(self->IsExceptionPending()); { // Use an arbitrary method from c to use as referrer - size_t result = Invoke3(static_cast<size_t>(c->GetDexTypeIndex()), // type_idx + size_t result = Invoke3(static_cast<size_t>(c->GetDexTypeIndex().index_), // type_idx // arbitrary reinterpret_cast<size_t>(c->GetVirtualMethod(0, kRuntimePointerSize)), 0U, @@ -1197,7 +1197,7 @@ TEST_F(StubTest, AllocObjectArray) { if ((false)) { // Use an arbitrary method from c to use as referrer size_t result = Invoke3( - static_cast<size_t>(c->GetDexTypeIndex()), // type_idx + static_cast<size_t>(c->GetDexTypeIndex().index_), // type_idx 10U, // arbitrary reinterpret_cast<size_t>(c_obj->GetVirtualMethod(0, kRuntimePointerSize)), |