diff options
author | 2017-01-18 18:07:15 +0000 | |
---|---|---|
committer | 2017-01-19 11:56:43 +0000 | |
commit | 8d91ac31ccb92557e434d89ffade3372466e1af5 (patch) | |
tree | 37fd364ba6c9a6cf5e6a60a00c2542c5ffb12528 /runtime/entrypoints_order_test.cc | |
parent | 2f670ccba022fe557c637571ac781519f0e84463 (diff) |
Remove unused array entrypoints.
Test: test-art-host test-art-target
Change-Id: I910d1c912c7c9056ecea0e1e7da7afb2a7220dfa
Diffstat (limited to 'runtime/entrypoints_order_test.cc')
-rw-r--r-- | runtime/entrypoints_order_test.cc | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/runtime/entrypoints_order_test.cc b/runtime/entrypoints_order_test.cc index b9caf0f555..8e84d76e83 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -150,12 +150,9 @@ class EntrypointsOrderTest : public CommonRuntimeTest { } void CheckQuickEntryPoints() { - CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pAllocArray) == 0, - QuickEntryPoints_start_with_allocarray); - EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArray, pAllocArrayResolved, sizeof(void*)); - EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArrayResolved, pAllocArrayWithAccessCheck, - sizeof(void*)); - EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArrayWithAccessCheck, pAllocObjectResolved, + CHECKED(OFFSETOF_MEMBER(QuickEntryPoints, pAllocArrayResolved) == 0, + QuickEntryPoints_start_with_allocarray_resoved); + EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocArrayResolved, pAllocObjectResolved, sizeof(void*)); EXPECT_OFFSET_DIFFNP(QuickEntryPoints, pAllocObjectResolved, pAllocObjectInitialized, sizeof(void*)); |