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 | 25ae5d16b1e30cc2bc1f2eb5b51553ea6413433c (patch) | |
tree | 2b3f23fb4370aa89030b05c7616bb1f0c3add477 /gdb/value.h | |
parent | d73188182eee3fb4c87c24ec1139b0b04cf41c1e (diff) | |
download | gdb-25ae5d16b1e30cc2bc1f2eb5b51553ea6413433c.zip gdb-25ae5d16b1e30cc2bc1f2eb5b51553ea6413433c.tar.gz gdb-25ae5d16b1e30cc2bc1f2eb5b51553ea6413433c.tar.bz2 |
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 0feddbf..716f84b 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. */ |