diff options
author | 2020-07-27 12:59:58 -0700 | |
---|---|---|
committer | 2020-07-28 16:13:40 +0000 | |
commit | 72e27b0b29fd1bdea6747f62c5bd865d26a0bdcd (patch) | |
tree | 970bdf71ef5272a231df09a0818a08d81920e5c2 /runtime/entrypoints_order_test.cc | |
parent | a462fa67f88a2b893e1543a763821d483247011d (diff) |
Remove deprecated debug_suspend_count TLS value
The debug_suspend_count TLS value has been dead for a while and was
accidentally left in. Remove it entirely.
Test: ./test.py --host
Change-Id: Ie2ead0d30e5ff3885cdd83242cad2c826c7fb732
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 e3f0d00440..18a230266a 100644 --- a/runtime/entrypoints_order_test.cc +++ b/runtime/entrypoints_order_test.cc @@ -64,8 +64,7 @@ class EntrypointsOrderTest : public CommonRuntimeTest { void CheckThreadOffsets() { CHECKED(OFFSETOF_MEMBER(Thread, tls32_.state_and_flags) == 0, thread_flags_at_zero); EXPECT_OFFSET_DIFFP(Thread, tls32_, state_and_flags, suspend_count, 4); - EXPECT_OFFSET_DIFFP(Thread, tls32_, suspend_count, debug_suspend_count, 4); - EXPECT_OFFSET_DIFFP(Thread, tls32_, debug_suspend_count, thin_lock_thread_id, 4); + EXPECT_OFFSET_DIFFP(Thread, tls32_, suspend_count, thin_lock_thread_id, 4); EXPECT_OFFSET_DIFFP(Thread, tls32_, thin_lock_thread_id, tid, 4); EXPECT_OFFSET_DIFFP(Thread, tls32_, tid, daemon, 4); EXPECT_OFFSET_DIFFP(Thread, tls32_, daemon, throwing_OutOfMemoryError, 4); |