From 8cedd8b45854cb971510a435909573a5855092d2 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 20 Dec 2021 16:49:14 +0000 Subject: Revert "More entrypoint handling cleanup." This reverts commit 67e48ecc200bee6e4ac784c97446bb949fb20a9e. Reason for revert: Test failure on target. Change-Id: I94c96db18f79d7e214435b3e475586d8c5d0ab58 --- runtime/stack.cc | 1 - 1 file changed, 1 deletion(-) (limited to 'runtime/stack.cc') diff --git a/runtime/stack.cc b/runtime/stack.cc index e0b87de2cd..7f1f47f2bc 100644 --- a/runtime/stack.cc +++ b/runtime/stack.cc @@ -682,7 +682,6 @@ static void AssertPcIsWithinQuickCode(ArtMethod* method, uintptr_t pc) uintptr_t code_start = reinterpret_cast(code); CHECK(code_start <= pc && pc <= (code_start + code_size)) << method->PrettyMethod() - << " " << Runtime::Current()->GetInstrumentation()->EntryPointString(code) << " pc=" << std::hex << pc << " code_start=" << code_start << " code_size=" << code_size; -- cgit v1.2.3-59-g8ed1b