From d699e23f17215923f3963175b1f773077b48ba00 Mon Sep 17 00:00:00 2001 From: Ronen Friedman Date: Tue, 18 Jun 2024 09:59:07 -0500 Subject: [PATCH] common: MemoryModel: do not discard memory mappings marked [stack] Signed-off-by: Ronen Friedman --- src/common/MemoryModel.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/common/MemoryModel.cc b/src/common/MemoryModel.cc index b9bc0511a06..0f659aca958 100644 --- a/src/common/MemoryModel.cc +++ b/src/common/MemoryModel.cc @@ -89,11 +89,6 @@ tl::expected MemoryModel::get_mapped_heap() continue; } - if (the_rest.ends_with("[stack]")) { - // should we really exclude the stack? - continue; - } - std::string_view final_token{the_rest.begin() + sizeof("00000000 00:00 0") - 1, the_rest.end()}; if (final_token.size() < 3 || -- 2.39.5