diff options
author | Michael Snyder <msnyder@specifix.com> | 2000-08-09 20:09:01 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2000-08-09 20:09:01 +0000 |
commit | 92501f2dc7e2973ba13aadad32ddf65bfe836448 (patch) | |
tree | aea4d1f3ebda08929a3545891490c8fe3729a249 /gdb/irix5-nat.c | |
parent | 3a6850249812746f7ccbfe13b996762c1294df8d (diff) | |
download | gdb-92501f2dc7e2973ba13aadad32ddf65bfe836448.tar.gz |
2000-08-09 Michael Snyder <msnyder@cleaver.cygnus.com>
* blockframe.c (sigtramp_saved_pc): Use dynamic allocation,
since TARGET_PTR_BIT is no longer a constant (MULTI_ARCH).
* irix4-nat.c (get_longjmp_target): Ditto.
* irix5-nat.c (get_longjmp_target): Ditto.
* jv-valprint.c (java_value_print): Ditto.
* m3-nat.c (get_cprocs): Ditto.
* m68k-tdep.c (get_longjmp_target): Ditto.
* mips-nat.c (get_longjmp_target): Ditto.
* mipsv4-nat.c(get_longjmp_target): Ditto.
* pa64solib.c (read_dynamic_info): Ditto.
* solib.c (elf_locate_base): Ditto.
Diffstat (limited to 'gdb/irix5-nat.c')
-rw-r--r-- | gdb/irix5-nat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/irix5-nat.c b/gdb/irix5-nat.c index dcef6ad6395..b8ca2a523d9 100644 --- a/gdb/irix5-nat.c +++ b/gdb/irix5-nat.c @@ -165,9 +165,10 @@ fill_fpregset (fpregset_t *fpregsetp, int regno) int get_longjmp_target (CORE_ADDR *pc) { - char buf[TARGET_PTR_BIT / TARGET_CHAR_BIT]; + char *buf; CORE_ADDR jb_addr; + buf = alloca (TARGET_PTR_BIT / TARGET_CHAR_BIT); jb_addr = read_register (A0_REGNUM); if (target_read_memory (jb_addr + JB_PC * JB_ELEMENT_SIZE, buf, |