mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
* sparc64-tdep.c (sparc64_store_floating_fields): Constify third
argument. (sparc64_store_arguments): Constify.
This commit is contained in:
parent
0d6e4ad74b
commit
e219d7ceb6
@ -1,3 +1,9 @@
|
||||
2005-03-05 Mark Kettenis <kettenis@janacek.sibelius.xs4all.nl>
|
||||
|
||||
* sparc64-tdep.c (sparc64_store_floating_fields): Constify third
|
||||
argument.
|
||||
(sparc64_store_arguments): Constify.
|
||||
|
||||
2005-03-05 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* alphabsd-nat.c: Update copyright year. Include "inf-ptrace.h".
|
||||
|
@ -615,7 +615,7 @@ sparc64_16_byte_align_p (struct type *type)
|
||||
|
||||
static void
|
||||
sparc64_store_floating_fields (struct regcache *regcache, struct type *type,
|
||||
char *valbuf, int element, int bitpos)
|
||||
const char *valbuf, int element, int bitpos)
|
||||
{
|
||||
gdb_assert (element < 16);
|
||||
|
||||
@ -853,7 +853,7 @@ sparc64_store_arguments (struct regcache *regcache, int nargs,
|
||||
|
||||
for (i = 0; i < nargs; i++)
|
||||
{
|
||||
char *valbuf = value_contents (args[i]);
|
||||
const char *valbuf = value_contents (args[i]);
|
||||
struct type *type = value_type (args[i]);
|
||||
int len = TYPE_LENGTH (type);
|
||||
int regnum = -1;
|
||||
|
Loading…
Reference in New Issue
Block a user