diff options
author | Randolph Chung <tausq@debian.org> | 2004-05-16 04:33:41 +0000 |
---|---|---|
committer | Randolph Chung <tausq@debian.org> | 2004-05-16 04:33:41 +0000 |
commit | 0d99fdb99176163c1b679d271d86c50cc0247231 (patch) | |
tree | 2d79805869d08cf7ca164d123412570b959f5ec3 /gdb/hppa-tdep.h | |
parent | 7154e7286244cfc59dba3aea385f97917ad8251a (diff) | |
download | gdb-0d99fdb99176163c1b679d271d86c50cc0247231.zip gdb-0d99fdb99176163c1b679d271d86c50cc0247231.tar.gz gdb-0d99fdb99176163c1b679d271d86c50cc0247231.tar.bz2 |
2004-05-15 Randolph Chung <tausq@debian.org>
* hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
as pointer instead of array reference since HPUX compiler does
not accept unsized array arguments.
* somsolib.c (dld_flags_buffer): Use constant array size.
Diffstat (limited to 'gdb/hppa-tdep.h')
-rw-r--r-- | gdb/hppa-tdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/hppa-tdep.h b/gdb/hppa-tdep.h index 816e15e..f90860e 100644 --- a/gdb/hppa-tdep.h +++ b/gdb/hppa-tdep.h @@ -194,7 +194,7 @@ int hppa_sign_extend (unsigned int, unsigned int); void hppa_frame_prev_register_helper (struct frame_info *next_frame, - struct trad_frame_saved_reg saved_regs[], + struct trad_frame_saved_reg *saved_regs, int regnum, int *optimizedp, enum lval_type *lvalp, CORE_ADDR *addrp, int *realnump, void *valuep); |