diff options
author | 2023-06-14 10:25:46 +0100 | |
---|---|---|
committer | 2023-06-14 16:24:50 +0000 | |
commit | a6400985309256ebec58ec8a73a94b86115693c9 (patch) | |
tree | 5c6175105100bb2260cefb6b4b245be06b6c239b /runtime/entrypoints_order_test.cc | |
parent | 29f6ba6f17dcd8df253e439aeb83b50ebf5ef413 (diff) |
Replace GcRoots in the verifier to use VariableSizedHandleScope.
This removes the cruft in creating static instances, and the need to
explicitly visit verifier roots.
Test: test.py
Change-Id: Ia0f0a82cbc66bb57f30610587f080e75d4d32e92
Diffstat (limited to 'runtime/entrypoints_order_test.cc')
-rw-r--r-- | runtime/entrypoints_order_test.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/entrypoints_order_test.cc b/runtime/entrypoints_order_test.cc index be1c58dd6d..9b4af663a0 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -129,8 +129,7 @@ class EntrypointsOrderTest : public CommonArtTest { EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, mutator_lock, held_mutexes, sizeof(void*)); EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, held_mutexes, flip_function, sizeof(void*) * kLockLevelCount); - EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, flip_function, method_verifier, sizeof(void*)); - EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, method_verifier, thread_local_mark_stack, sizeof(void*)); + EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, flip_function, thread_local_mark_stack, sizeof(void*)); EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, thread_local_mark_stack, async_exception, sizeof(void*)); EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, async_exception, top_reflective_handle_scope, sizeof(void*)); |