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:
parent
713f0374c0
commit
e6cbd02ac2
8 changed files with 30 additions and 14 deletions
|
@ -1467,8 +1467,8 @@ do_registers_info (int regnum, int fpregs)
|
|||
|
||||
for (i = 0; i < numregs; i++)
|
||||
{
|
||||
char raw_buffer[MAX_REGISTER_RAW_SIZE];
|
||||
char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
|
||||
char *raw_buffer = (char*) alloca (MAX_REGISTER_RAW_SIZE);
|
||||
char *virtual_buffer = (char*) alloca (MAX_REGISTER_VIRTUAL_SIZE);
|
||||
|
||||
/* Decide between printing all regs, nonfloat regs, or specific reg. */
|
||||
if (regnum == -1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue