From 72e27b0b29fd1bdea6747f62c5bd865d26a0bdcd Mon Sep 17 00:00:00 2001 From: Alex Light Date: Mon, 27 Jul 2020 12:59:58 -0700 Subject: 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 --- runtime/entrypoints_order_test.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'runtime/entrypoints_order_test.cc') 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); -- cgit v1.2.3-59-g8ed1b