summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2017-02-03 13:31:29 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2017-02-03 13:31:30 +0000
commit6058b682234060120c4407a1afad1182fa5a1baf (patch)
tree6d20d1396026966f2ede97594d771d47d8134ef1
parent41f74275b31317bafcb414c9ffbb65812a07e98f (diff)
parent26aee501fafff39dd0e9f42e655237243ed90d72 (diff)
Merge "Use the write entrypoint for stub_test."
-rw-r--r--runtime/arch/stub_test.cc4
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());