diff options
| -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 9e75cbabd7..0bf08a6d97 100644 --- a/runtime/arch/stub_test.cc +++ b/runtime/arch/stub_test.cc @@ -1051,7 +1051,7 @@ TEST_F(StubTest, AllocObjectArray) { // resolved/initialized cases) size_t result = Invoke3(reinterpret_cast<size_t>(c.Get()), 10U, reinterpret_cast<size_t>(nullptr), - StubTest::GetEntrypoint(self, kQuickAllocArrayResolved), + StubTest::GetEntrypoint(self, kQuickAllocArrayResolved32), self); EXPECT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); EXPECT_NE(reinterpret_cast<size_t>(nullptr), result); @@ -1071,7 +1071,7 @@ TEST_F(StubTest, AllocObjectArray) { size_t result = Invoke3(reinterpret_cast<size_t>(c.Get()), GB, // that should fail... reinterpret_cast<size_t>(nullptr), - StubTest::GetEntrypoint(self, kQuickAllocArrayResolved), + StubTest::GetEntrypoint(self, kQuickAllocArrayResolved32), self); EXPECT_TRUE(self->IsExceptionPending()); |