diff options
Diffstat (limited to 'gdb/dummy-frame.c')
-rw-r--r-- | gdb/dummy-frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/dummy-frame.c b/gdb/dummy-frame.c index ed2c778..bdfd518 100644 --- a/gdb/dummy-frame.c +++ b/gdb/dummy-frame.c @@ -353,8 +353,8 @@ dummy_frame_prev_register (struct frame_info *this_frame, /* Use the regcache_cooked_read() method so that it, on the fly, constructs either a raw or pseudo register from the raw register cache. */ - cache->prev_regcache->cooked_read (regnum, - value_contents_writeable (reg_val)); + cache->prev_regcache->cooked_read + (regnum, value_contents_writeable (reg_val).data ()); return reg_val; } |