mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2025-02-18 11:01:41 +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
|
test is (bsp >= rbs->end - rbs->size) && (bsp < rbs->end). We
|
||||||
take advantage of the fact that -n == ~n + 1. */
|
take advantage of the fact that -n == ~n + 1. */
|
||||||
result = bsp - rbs->end > ~rbs->size;
|
result = bsp - rbs->end > ~rbs->size;
|
||||||
debug (150, "%s: 0x%lx in [0x%lx-0x%lx) => %d\n\t(from %p)\n", __FUNCTION__,
|
debug (150, "%s: 0x%lx in [0x%lx-0x%lx) => %d\n", __FUNCTION__,
|
||||||
(long) bsp, (long) (rbs->end - rbs->size), (long) rbs->end, result,
|
(long) bsp, (long) (rbs->end - rbs->size), (long) rbs->end, result);
|
||||||
__builtin_return_address (0));
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue