Skip to content
Snippets Groups Projects
Commit 8cc2524a authored by Andrew Cagney's avatar Andrew Cagney
Browse files

2005-01-27 Andrew Cagney <cagney@gnu.org>

	* value.h (struct value): Change type of contents to bfd_byte.
	(VALUE_CONTENTS_RAW): Simplify.
parent befd69ef
No related branches found
No related tags found
No related merge requests found
2005-01-27 Andrew Cagney <cagney@gnu.org>
* value.h (struct value): Change type of contents to bfd_byte.
(VALUE_CONTENTS_RAW): Simplify.
* gdbarch.sh (integer_to_address): Change buf parameter to a const
bfd_byte, make pure-multi-arch.
* gdbarch.h, gdbarch.c: Regenerate.
......
......@@ -162,7 +162,7 @@ struct value
declared here. */
union
{
long contents[1];
bfd_byte contents[1];
DOUBLEST force_doublest_align;
LONGEST force_longest_align;
CORE_ADDR force_core_addr_align;
......@@ -195,7 +195,7 @@ extern int value_offset (struct value *);
something embedded in a larger run-time object. */
#define VALUE_CONTENTS_RAW(val) \
((char *) (val)->aligner.contents + (val)->embedded_offset)
((val)->aligner.contents + (val)->embedded_offset)
#define VALUE_CONTENTS(val) \
((void)(VALUE_LAZY(val) && value_fetch_lazy(val)), VALUE_CONTENTS_RAW(val))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment