summaryrefslogtreecommitdiff
path: root/gdb/value.h
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2002-03-17 01:10:15 +0000
committerAndrew Cagney <cagney@redhat.com>2002-03-17 01:10:15 +0000
commitf8d598f713ea3a85587368e7df1aecc059f16327 (patch)
tree2011762678a364d7b8a185aca3ea36dc890e1b1c /gdb/value.h
parent85117d49a013080c1edfcf93fb951f8f13d6182a (diff)
downloadgdb-f8d598f713ea3a85587368e7df1aecc059f16327.tar.gz
* value.h (struct value): Delete field ``substring_addr''. Change
aligner fields to force_doublest_align, force_longest_align, force_core_addr_align and force_pointer_align.
Diffstat (limited to 'gdb/value.h')
-rw-r--r--gdb/value.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/gdb/value.h b/gdb/value.h
index 29a178fe88f..fe0e93a5bbe 100644
--- a/gdb/value.h
+++ b/gdb/value.h
@@ -125,14 +125,6 @@ struct value
list. */
struct value *next;
- /* ??? When is this used? */
- union
- {
- CORE_ADDR memaddr;
- char *myaddr;
- }
- substring_addr;
-
/* Register number if the value is from a register. Is not kept
if you take a field of a structure that is stored in a
register. Shouldn't it be? */
@@ -166,9 +158,10 @@ struct value
union
{
long contents[1];
- double force_double_align;
- LONGEST force_longlong_align;
- char *literal_data;
+ DOUBLEST force_doublest_align;
+ LONGEST force_longest_align;
+ CORE_ADDR force_core_addr_align;
+ void *force_pointer_aligh;
}
aligner;
/* Do not add any new members here -- contents above will trash them */