diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-11-13 02:29:48 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-11-13 02:29:48 +0000 |
commit | 606fd5aa6b438120a7fd715604338ab02b46a01c (patch) | |
tree | 9e4cb797d46f1fec25f50e47d3b2b2697b7b9b3c /gdb/value.h | |
parent | 9d11a78baa5130afa2a31029df9d1392d661d5b3 (diff) | |
download | gdb-606fd5aa6b438120a7fd715604338ab02b46a01c.tar.gz |
2004-11-12 Andrew Cagney <cagney@gnu.org>
* defs.h (enum lval_type): Delete lval_reg_frame_relative.
* value.h (struct value): Update comment.
* valops.c (value_assign): Fold lval_reg_fame_relative into
lval_register.
* findvar.c (value_from_register, locate_var_value): Ditto.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/value.h b/gdb/value.h index 0feddbf105e..716f84bf728 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -75,11 +75,8 @@ struct value For BITS_BIG_ENDIAN=1 targets, it is the position of the MSB. */ int bitpos; - /* Frame value is relative to. In practice, this ID is only used if - the value is stored in several registers in other than the - current frame, and these registers have not all been saved at the - same place in memory. This will be described in the lval enum - above as "lval_reg_frame_relative". */ + /* Frame register value is relative to. This will be described in + the lval enum above as "lval_register". */ struct frame_id frame_id; /* Type of the value. */ |