mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-03 23:56:39 +00:00
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.
This commit is contained in:
parent
7154e72862
commit
0d99fdb991
@ -1,3 +1,10 @@
|
||||
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.
|
||||
|
||||
2004-05-15 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
|
||||
|
@ -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);
|
||||
|
@ -1064,7 +1064,7 @@ som_solib_remove_inferior_hook (int pid)
|
||||
CORE_ADDR addr;
|
||||
struct minimal_symbol *msymbol;
|
||||
int status;
|
||||
char dld_flags_buffer[TARGET_INT_BIT / TARGET_CHAR_BIT];
|
||||
char dld_flags_buffer[4];
|
||||
unsigned int dld_flags_value;
|
||||
struct cleanup *old_cleanups = save_inferior_ptid ();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user