diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-06 15:26:28 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2007-06-06 15:26:28 +0000 |
commit | 4d1e7dd175a53ab96cccf4539cef4576af758ddc (patch) | |
tree | 09f89c936198bbe260ea7d879aa9f3f71081870a /gdb/frame.c | |
parent | 76e713237b3bb87b52b7716262a63fefd4a7f0bf (diff) | |
download | gdb-4d1e7dd175a53ab96cccf4539cef4576af758ddc.zip gdb-4d1e7dd175a53ab96cccf4539cef4576af758ddc.tar.gz gdb-4d1e7dd175a53ab96cccf4539cef4576af758ddc.tar.bz2 |
2007-06-06 Markus Deuling <deuling@de.ibm.com>
* gdbarch.sh (INNER_THAN): Replace by gdbarch_inner_than.
* infcall.c (call_function_by_hand): Likewise.
* gcore.c (derive_stack_segment): Likewise.
* frame.c (frame_id_inner): Likewise.
* arch-utils.c (core_addr_lessthan): Likewise (comment).
* ada-lang.c (ensure_lval): Likewise.
* gdbarch.c, gdbarch.h: Regenerate.
Diffstat (limited to 'gdb/frame.c')
-rw-r--r-- | gdb/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/frame.c b/gdb/frame.c index d066a49..6365462 100644 --- a/gdb/frame.c +++ b/gdb/frame.c @@ -382,7 +382,7 @@ frame_id_inner (struct frame_id l, struct frame_id r) comment in "frame.h", there is some fuzz here. Frameless functions are not strictly inner than (same .stack but different .code and/or .special address). */ - inner = INNER_THAN (l.stack_addr, r.stack_addr); + inner = gdbarch_inner_than (current_gdbarch, l.stack_addr, r.stack_addr); if (frame_debug) { fprintf_unfiltered (gdb_stdlog, "{ frame_id_inner (l="); |