summaryrefslogtreecommitdiff
path: root/runtime/stack.cc
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2021-12-20 16:49:14 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2021-12-20 17:15:52 +0000
commit8cedd8b45854cb971510a435909573a5855092d2 (patch)
treea611d36bad969a24a315f50d1da04773e32e5429 /runtime/stack.cc
parentfb8cdb5b34923374712d9c5daa84c56117bf1ff1 (diff)
Revert "More entrypoint handling cleanup."
This reverts commit 67e48ecc200bee6e4ac784c97446bb949fb20a9e. Reason for revert: Test failure on target. Change-Id: I94c96db18f79d7e214435b3e475586d8c5d0ab58
Diffstat (limited to 'runtime/stack.cc')
-rw-r--r--runtime/stack.cc1
1 files changed, 0 insertions, 1 deletions
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<uintptr_t>(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;