mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-27 01:27:39 +01:00
(rbs_contains): Tighten debug output.
(Logical change 1.55)
This commit is contained in:
parent
43652d9dea
commit
8d4f6ff52d
1 changed files with 2 additions and 3 deletions
|
@ -350,9 +350,8 @@ rbs_contains (struct rbs_area *rbs, unw_word_t bsp)
|
|||
test is (bsp >= rbs->end - rbs->size) && (bsp < rbs->end). We
|
||||
take advantage of the fact that -n == ~n + 1. */
|
||||
result = bsp - rbs->end > ~rbs->size;
|
||||
debug (150, "%s: 0x%lx in [0x%lx-0x%lx) => %d\n\t(from %p)\n", __FUNCTION__,
|
||||
(long) bsp, (long) (rbs->end - rbs->size), (long) rbs->end, result,
|
||||
__builtin_return_address (0));
|
||||
debug (150, "%s: 0x%lx in [0x%lx-0x%lx) => %d\n", __FUNCTION__,
|
||||
(long) bsp, (long) (rbs->end - rbs->size), (long) rbs->end, result);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue