mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
2005-02-06 Andrew Cagney <cagney@gnu.org>
* value.c (value_contents, value_contents_writeable): New functions. * value.h (VALUE_CONTENTS): Delete macro. (value_contents, value_contents_writeable): Declare. * xstormy16-tdep.c, value.c, valops.c, valarith.c: Update. * stack.c, sparc-tdep.c, sparc64-tdep.c, sh-tdep.c: Update. * sh64-tdep.c, scm-valprint.c, scm-exp.c, s390-tdep.c: Update. * rs6000-tdep.c, p-valprint.c, printcmd.c: Update. * ppc-sysv-tdep.c, mips-tdep.c, mi/mi-main.c: Update. * m88k-tdep.c, m68hc11-tdep.c, m32r-tdep.c: Update. * jv-valprint.c, ia64-tdep.c, hppa-tdep.c: Update. * hpacc-abi.c, f-valprint.c, frv-tdep.c, eval.c: Update. * c-valprint.c, cris-tdep.c, cp-valprint.c: Update. * cli/cli-dump.c, breakpoint.c, avr-tdep.c, arm-tdep.c: Update. * arm-linux-tdep.c, amd64-tdep.c, alpha-tdep.c: Update. * ada-valprint.c, ada-lang.c: Update.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/* Target-dependent code for UltraSPARC.
|
||||
|
||||
Copyright 2003, 2004 Free Software Foundation, Inc.
|
||||
Copyright 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
@@ -784,7 +784,7 @@ sparc64_store_arguments (struct regcache *regcache, int nargs,
|
||||
a problem. */
|
||||
sp &= ~0xf;
|
||||
|
||||
write_memory (sp, VALUE_CONTENTS (args[i]), len);
|
||||
write_memory (sp, value_contents (args[i]), len);
|
||||
args[i] = value_from_pointer (lookup_pointer_type (type), sp);
|
||||
num_elements++;
|
||||
}
|
||||
@@ -853,7 +853,7 @@ sparc64_store_arguments (struct regcache *regcache, int nargs,
|
||||
|
||||
for (i = 0; i < nargs; i++)
|
||||
{
|
||||
char *valbuf = VALUE_CONTENTS (args[i]);
|
||||
char *valbuf = value_contents (args[i]);
|
||||
struct type *type = value_type (args[i]);
|
||||
int len = TYPE_LENGTH (type);
|
||||
int regnum = -1;
|
||||
|
||||
Reference in New Issue
Block a user