aboutsummaryrefslogtreecommitdiff
path: root/gdb/amd64-tdep.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2023-02-09 06:35:33 -0700
committerTom Tromey <tom@tromey.com>2023-02-13 15:22:20 -0700
commit6f9c9d71c2420e9bc6825cef59a922f5fb863e1a (patch)
treed8a12b7cdd7bf1510afbfc13ea7f79449f99fffb /gdb/amd64-tdep.c
parent43b5fba22365c6ddd0d60324833f279364b577e7 (diff)
downloadgdb-6f9c9d71c2420e9bc6825cef59a922f5fb863e1a.zip
gdb-6f9c9d71c2420e9bc6825cef59a922f5fb863e1a.tar.gz
gdb-6f9c9d71c2420e9bc6825cef59a922f5fb863e1a.tar.bz2
Introduce set_lval method on value
This introduces the set_lval method on value, one step toward removing deprecated_lval_hack. Ultimately I think the goal should be for some of these set_* methods to be replaced with constructors; but I haven't done this, as the series is already too long. Other 'deprecated' methods can probably be handled the same way. Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/amd64-tdep.c')
-rw-r--r--gdb/amd64-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/amd64-tdep.c b/gdb/amd64-tdep.c
index 3844063..9ce3e37 100644
--- a/gdb/amd64-tdep.c
+++ b/gdb/amd64-tdep.c
@@ -356,7 +356,7 @@ amd64_pseudo_register_read_value (struct gdbarch *gdbarch,
i386_gdbarch_tdep *tdep = gdbarch_tdep<i386_gdbarch_tdep> (gdbarch);
value *result_value = value::allocate (register_type (gdbarch, regnum));
- VALUE_LVAL (result_value) = lval_register;
+ result_value->set_lval (lval_register);
VALUE_REGNUM (result_value) = regnum;
gdb_byte *buf = result_value->contents_raw ().data ();