* alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
const. Use value_contents, not value_contents_writeable.
This commit is contained in:
parent
12b795ad7b
commit
f42a0a3369
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2010-05-27 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
|
||||
const. Use value_contents, not value_contents_writeable.
|
||||
|
||||
2010-05-27 Joel Brobecker <brobecker@adacore.com>
|
||||
|
||||
* ada-lang.c (ensure_lval): Replace call to value_contents_raw
|
||||
|
|
|
@ -295,7 +295,7 @@ alpha_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
|||
int accumulate_size = struct_return ? 8 : 0;
|
||||
struct alpha_arg
|
||||
{
|
||||
gdb_byte *contents;
|
||||
const gdb_byte *contents;
|
||||
int len;
|
||||
int offset;
|
||||
};
|
||||
|
@ -393,7 +393,7 @@ alpha_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
|||
m_arg->len = TYPE_LENGTH (arg_type);
|
||||
m_arg->offset = accumulate_size;
|
||||
accumulate_size = (accumulate_size + m_arg->len + 7) & ~7;
|
||||
m_arg->contents = value_contents_writeable (arg);
|
||||
m_arg->contents = value_contents (arg);
|
||||
}
|
||||
|
||||
/* Determine required argument register loads, loading an argument register
|
||||
|
@ -415,7 +415,7 @@ alpha_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
|
|||
/* `Push' arguments on the stack. */
|
||||
for (i = nargs; m_arg--, --i >= 0;)
|
||||
{
|
||||
gdb_byte *contents = m_arg->contents;
|
||||
const gdb_byte *contents = m_arg->contents;
|
||||
int offset = m_arg->offset;
|
||||
int len = m_arg->len;
|
||||
|
||||
|
|
Loading…
Reference in a new issue