2005-02-07 Andrew Cagney <cagney@gnu.org>

* value.h (set_value_offset): Declare.
	* value.c (set_value_offset): Declare.
	* gnu-v2-abi.c, jv-valprint.c, valarith.c, valops.c: Update.
	* findvar.c: Update.
This commit is contained in:
Andrew Cagney 2005-02-08 02:29:18 +00:00
parent 17cf0ecde3
commit f5cf64a727
8 changed files with 22 additions and 11 deletions

View file

@ -145,6 +145,11 @@ value_offset (struct value *value)
{
return value->offset;
}
void
set_value_offset (struct value *value, int offset)
{
value->offset = offset;
}
int
value_bitpos (struct value *value)