aboutsummaryrefslogtreecommitdiff
path: root/gdb/mn10300-tdep.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2001-05-09 02:27:47 +0000
committerJim Blandy <jimb@codesourcery.com>2001-05-09 02:27:47 +0000
commitbf4b70a5e89748322ccec3aa1c2423fee502e100 (patch)
tree4a37bf2bba7911f6e19c2c2d3049dc169dc97118 /gdb/mn10300-tdep.c
parentee9f9641e044af38cd83b957504141a2d558bfa8 (diff)
downloadgdb-bf4b70a5e89748322ccec3aa1c2423fee502e100.zip
gdb-bf4b70a5e89748322ccec3aa1c2423fee502e100.tar.gz
gdb-bf4b70a5e89748322ccec3aa1c2423fee502e100.tar.bz2
* mn10300-tdep.c (mn10300_gdbarch_init): We do have a
dummy_breakpoint_offset; it's zero.
Diffstat (limited to 'gdb/mn10300-tdep.c')
-rw-r--r--gdb/mn10300-tdep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/mn10300-tdep.c b/gdb/mn10300-tdep.c
index 49dcf05..ca73a06 100644
--- a/gdb/mn10300-tdep.c
+++ b/gdb/mn10300-tdep.c
@@ -1039,7 +1039,8 @@ mn10300_gdbarch_init (struct gdbarch_info info,
/* Calling functions in the inferior from GDB. */
set_gdbarch_call_dummy_p (gdbarch, 1);
- set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 0);
+ set_gdbarch_call_dummy_breakpoint_offset_p (gdbarch, 1);
+ set_gdbarch_call_dummy_breakpoint_offset (gdbarch, 0);
set_gdbarch_call_dummy_stack_adjust_p (gdbarch, 0);
set_gdbarch_call_dummy_location (gdbarch, AT_ENTRY_POINT);
set_gdbarch_call_dummy_address (gdbarch, entry_point_address);