diff options
author | Peter Schauer <Peter.Schauer@mytum.de> | 1993-07-21 10:13:30 +0000 |
---|---|---|
committer | Peter Schauer <Peter.Schauer@mytum.de> | 1993-07-21 10:13:30 +0000 |
commit | 66fe741646efa3a9aaa17a6805a4077dccb133b1 (patch) | |
tree | 6d1dfd895c7c4c6c4be07507a4242bb10d193950 | |
parent | 579f025837a64c84b380a2a5b35bd1ca61aefd7f (diff) | |
download | gdb-66fe741646efa3a9aaa17a6805a4077dccb133b1.zip gdb-66fe741646efa3a9aaa17a6805a4077dccb133b1.tar.gz gdb-66fe741646efa3a9aaa17a6805a4077dccb133b1.tar.bz2 |
* config/mips/xm-makeva.h: New file implements va_list alignment
restrictions for mips hosts.
* config/mips/{xm-irix3.h, xm-mips.h, xm-news-mips.h, xm-riscos.h}:
Use it.
* mips-tdep.c (init_extra_frame_info): Do not check for
mips_in_lenient_prologue if it is a dummy frame.
-rw-r--r-- | gdb/ChangeLog | 9 | ||||
-rw-r--r-- | gdb/mips-tdep.c | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5e1eca5..f9235c8 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,14 @@ +Wed Jul 21 03:07:30 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * config/mips/xm-makeva.h: New file implements va_list alignment + restrictions for mips hosts. + * config/mips/{xm-irix3.h, xm-mips.h, xm-news-mips.h, xm-riscos.h}: + Use it. + Wed Jul 21 00:11:05 1993 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + * mips-tdep.c (init_extra_frame_info): Do not check for + mips_in_lenient_prologue if it is a dummy frame. * mipsread.c (fixup_sigtramp): Initialize pdr.adr, it is used by mips_in_lenient_prologue. diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index e876fa1..cc0f9ea 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -362,6 +362,7 @@ init_extra_frame_info(fci) been saved yet. But they haven't been clobbered either, so it's fine to say they have not been saved. */ if (fci->next == NULL + && !PROC_DESC_IS_DUMMY(proc_desc) && mips_in_lenient_prologue (PROC_LOW_ADDR (proc_desc), fci->pc)) /* We already zeroed the saved regs. */ ; |