mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
2001-02-06 Michael Snyder <msnyder@makita.cygnus.com>
Submitted by Paul Hilfinger (hilfingr@gnat.com) and Andrei Petrov (and@genesyslab.com). * findvar.c: Buffers of size MAX_REGISTER_RAW_SIZE or REGISTER_BYTES must be allocated dynamically, since these are no longer constants. * infcmd.c: Ditto. * regcache.c: Ditto. * remote.c: Ditto. * sol-thread.c: Ditto. * valops.c: Ditto. * config/sparc/sun4sol2.mh (MH_CFLAGS): Add -I/usr/include/v9, as a work-around for a missing Sun header file in solaris for sparc64.
This commit is contained in:
@@ -685,7 +685,7 @@ sol_thread_store_registers (int regno)
|
||||
if (regno != -1)
|
||||
{ /* Not writing all the regs */
|
||||
/* save new register value */
|
||||
char old_value[REGISTER_SIZE];
|
||||
char* old_value = (char*) alloca (REGISTER_SIZE);
|
||||
memcpy (old_value, ®isters[REGISTER_BYTE (regno)], REGISTER_SIZE);
|
||||
|
||||
val = p_td_thr_getgregs (&thandle, gregset);
|
||||
|
||||
Reference in New Issue
Block a user