aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbarch.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2001-06-16 20:00:24 +0000
committerAndrew Cagney <cagney@redhat.com>2001-06-16 20:00:24 +0000
commit7824d2f224517915cf8001aaf29988a93a4b4b90 (patch)
tree7cc55b046a5fa48ab6c5307bb53904a39ee8f4d5 /gdb/gdbarch.c
parent1622c8f76475cdcba35e690db46bf48fe0238617 (diff)
downloadgdb-7824d2f224517915cf8001aaf29988a93a4b4b90.zip
gdb-7824d2f224517915cf8001aaf29988a93a4b4b90.tar.gz
gdb-7824d2f224517915cf8001aaf29988a93a4b4b90.tar.bz2
* arch-utils.c (init_frame_pc_default): New function
* arch-utils.h (init_frame_pc_default): Declare. * gdbarch.sh (INIT_FRAME_PC): Default to init_frame_pc_default and not init_frame_pc_noop. * gdbarch.h, gdbarch.c: Re-generate. * blockframe.c (INIT_FRAME_PC): Delete macro definition. * mips-tdep.c (mips_gdbarch_init): Set init_frame_pc to init_frame_pc_noop.
Diffstat (limited to 'gdb/gdbarch.c')
-rw-r--r--gdb/gdbarch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c
index fc23d3e..bac36c2 100644
--- a/gdb/gdbarch.c
+++ b/gdb/gdbarch.c
@@ -471,7 +471,7 @@ gdbarch_alloc (const struct gdbarch_info *info,
gdbarch->sizeof_call_dummy_words = legacy_sizeof_call_dummy_words;
gdbarch->call_dummy_stack_adjust_p = -1;
gdbarch->init_frame_pc_first = init_frame_pc_noop;
- gdbarch->init_frame_pc = init_frame_pc_noop;
+ gdbarch->init_frame_pc = init_frame_pc_default;
gdbarch->coerce_float_to_double = default_coerce_float_to_double;
gdbarch->register_convertible = generic_register_convertible_not;
gdbarch->pointer_to_address = unsigned_pointer_to_address;