diff options
author | Jim Blandy <jimb@codesourcery.com> | 2001-12-20 08:52:37 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2001-12-20 08:52:37 +0000 |
commit | 76cc2cf029a9b9a386c5b7fe8f5d40531a00f8ca (patch) | |
tree | d3b9953b62240b5a9512ba24bd1e675c6a61f541 | |
parent | c5e243bbc4b8448f588b175364eed888a2f56a2a (diff) | |
download | gdb-76cc2cf029a9b9a386c5b7fe8f5d40531a00f8ca.zip gdb-76cc2cf029a9b9a386c5b7fe8f5d40531a00f8ca.tar.gz gdb-76cc2cf029a9b9a386c5b7fe8f5d40531a00f8ca.tar.bz2 |
* s390-tdep.c (s390_get_frame_info): Give orig_sp a reasonable
value, even when fextra_info->stack_bought can't be trusted,
-rw-r--r-- | gdb/ChangeLog | 3 | ||||
-rw-r--r-- | gdb/s390-tdep.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d4888d3..6246f80 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2001-12-19 Jim Blandy <jimb@redhat.com> + * s390-tdep.c (s390_get_frame_info): Give orig_sp a reasonable + value, even when fextra_info->stack_bought can't be trusted, + * s390-tdep.c (s390_readinstruction): Don't call info->read_memory_func to read zero bytes. Some targets' xfer_memory functions can't cope with that. diff --git a/gdb/s390-tdep.c b/gdb/s390-tdep.c index db7692b..555d05f 100644 --- a/gdb/s390-tdep.c +++ b/gdb/s390-tdep.c @@ -285,8 +285,9 @@ s390_get_frame_info (CORE_ADDR pc, struct frame_extra_info *fextra_info, { if (fi && fi->frame) { + orig_sp = fi->frame; if (! init_extra_info && fextra_info->initialised) - orig_sp = fi->frame + fextra_info->stack_bought; + orig_sp += fextra_info->stack_bought; saved_regs = fi->saved_regs; } if (init_extra_info || !fextra_info->initialised) |