From: Andrew Cagney Date: Mon, 4 Aug 2003 15:42:43 +0000 (+0000) Subject: 2003-08-04 Andrew Cagney X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=57bfe1774eca9ff4b96595df28544f61c1574a5a;p=binutils-gdb.git 2003-08-04 Andrew Cagney * frame.c (frame_func_unwind): Use frame_unwind_address_in_block. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index deb73732c62..de60e7daba9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2003-08-04 Andrew Cagney + + * frame.c (frame_func_unwind): Use frame_unwind_address_in_block. + 2003-08-02 Andrew Cagney * config/djgpp/fnchange.lst: Fix up testsuite/gdb.c++/annota3.cc, diff --git a/gdb/frame.c b/gdb/frame.c index 9b95e9caec1..2b54ed78d5a 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -421,8 +421,11 @@ frame_func_unwind (struct frame_info *fi) { if (!fi->prev_func.p) { + /* Make certain that this, and not the adjacent, function is + found. */ + CORE_ADDR addr_in_block = frame_unwind_address_in_block (fi); fi->prev_func.p = 1; - fi->prev_func.addr = get_pc_function_start (frame_pc_unwind (fi)); + fi->prev_func.addr = get_pc_function_start (addr_in_block); if (frame_debug) fprintf_unfiltered (gdb_stdlog, "{ frame_func_unwind (fi=%d) -> 0x%s }\n",