diff options
author | Stu Grossman <grossman@cygnus> | 1992-04-03 03:55:42 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1992-04-03 03:55:42 +0000 |
commit | 4ad1963ee0a3eb85bf49bcfedf7b1a4bcea5a640 (patch) | |
tree | 2d1b3c1ddaeb9d585c31330ee7ae9d2f68cb80c7 /gdb/tm-mips.h | |
parent | 79a6ce4fa620233af77862ad26dd7dfe9b34f9a5 (diff) | |
download | gdb-4ad1963ee0a3eb85bf49bcfedf7b1a4bcea5a640.zip gdb-4ad1963ee0a3eb85bf49bcfedf7b1a4bcea5a640.tar.gz gdb-4ad1963ee0a3eb85bf49bcfedf7b1a4bcea5a640.tar.bz2 |
* mipsread.c (fixup_sigtramp): Also look for _sigtramp as a real
routine (for Irix-4.x). Make many funcs static and void.
* mips-tdep.c (mips-frame-chain): Clean up, simplify.
* (init_extra_frame_info): Don't trash cached value of frame
pointer register. This fixes backtracing through routines that use
alloca(). Generally clean up declarations of functions, and use
typedefs and macros to reference data structures as appropriate.
* tm-irix3.h, tm-mips.h (EXTRA_FRAME_INFO): use proper type for
proc_desc element.
Diffstat (limited to 'gdb/tm-mips.h')
-rw-r--r-- | gdb/tm-mips.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tm-mips.h b/gdb/tm-mips.h index f7a5cd0..7e9371f 100644 --- a/gdb/tm-mips.h +++ b/gdb/tm-mips.h @@ -331,7 +331,7 @@ typedef struct mips_extra_func_info { } *mips_extra_func_info_t; #define EXTRA_FRAME_INFO \ - char *proc_desc; /* actually, a mips_extra_func_info_t */\ + mips_extra_func_info_t proc_desc; \ int num_args;\ struct frame_saved_regs *saved_regs; |