diff options
Diffstat (limited to 'gdb/or1k-tdep.c')
-rw-r--r-- | gdb/or1k-tdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/or1k-tdep.c b/gdb/or1k-tdep.c index 91f2157..6b0b62d 100644 --- a/gdb/or1k-tdep.c +++ b/gdb/or1k-tdep.c @@ -655,7 +655,7 @@ or1k_push_dummy_call (struct gdbarch *gdbarch, struct value *function, heap_offset += align_up (len, bpw); valaddr = heap_sp + heap_offset; - write_memory (valaddr, value_contents (arg), len); + write_memory (valaddr, value_contents (arg).data (), len); } /* The ABI passes all structures by reference, so get its @@ -667,7 +667,7 @@ or1k_push_dummy_call (struct gdbarch *gdbarch, struct value *function, else { /* Everything else, we just get the value. */ - val = value_contents (arg); + val = value_contents (arg).data (); } /* Stick the value in a register. */ @@ -767,7 +767,7 @@ or1k_push_dummy_call (struct gdbarch *gdbarch, struct value *function, val = valbuf; } else - val = value_contents (arg); + val = value_contents (arg).data (); while (len > 0) { |