aboutsummaryrefslogtreecommitdiff
path: root/gdb/defs.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-11-13 02:29:48 +0000
committerAndrew Cagney <cagney@redhat.com>2004-11-13 02:29:48 +0000
commit25ae5d16b1e30cc2bc1f2eb5b51553ea6413433c (patch)
tree2b3f23fb4370aa89030b05c7616bb1f0c3add477 /gdb/defs.h
parentd73188182eee3fb4c87c24ec1139b0b04cf41c1e (diff)
downloadgdb-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/defs.h')
-rw-r--r--gdb/defs.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/gdb/defs.h b/gdb/defs.h
index 64281e1..7a38363 100644
--- a/gdb/defs.h
+++ b/gdb/defs.h
@@ -630,18 +630,14 @@ enum lval_type
{
/* Not an lval. */
not_lval,
- /* In memory. Could be a saved register. */
+ /* In memory. */
lval_memory,
- /* In a register. */
+ /* In a register. Registers are relative to a frame. */
lval_register,
/* In a gdb internal variable. */
lval_internalvar,
/* Part of a gdb internal variable (structure field). */
- lval_internalvar_component,
- /* In a register series in a frame not the current one, which may have been
- partially saved or saved in different places (otherwise would be
- lval_register or lval_memory). */
- lval_reg_frame_relative
+ lval_internalvar_component
};
/* Control types for commands */