diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-07 15:04:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-07 15:04:43 +0000 |
commit | dfa52d88e70f7149def79ecf95faea9f87477df4 (patch) | |
tree | bfed4ca0cf97d3b1c3b1cae9aa795e0d76f663e8 /gdb/value.h | |
parent | 303e4c21e7c9ddd98c577051f5c477f11a5c06ec (diff) | |
download | binutils-dfa52d88e70f7149def79ecf95faea9f87477df4.zip binutils-dfa52d88e70f7149def79ecf95faea9f87477df4.tar.gz binutils-dfa52d88e70f7149def79ecf95faea9f87477df4.tar.bz2 |
2005-02-07 Andrew Cagney <cagney@gnu.org>
* value.h (VALUE_LAZY): Delete
(set_value_lazy): Declare.
* value.c (set_value_lazy): Define.
* valops.c, valarith.c, jv-valprint.c, jv-lang.c: Update.
* gnu-v2-abi.c, findvar.c, dwarf2loc.c, ada-lang.c: Update.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/value.h b/gdb/value.h index 0a3d6af..ae17cd2 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -180,7 +180,7 @@ extern int value_offset (struct value *); extern struct type *value_enclosing_type (struct value *); extern int value_lazy (struct value *); -#define VALUE_LAZY(val) (val)->lazy +extern void set_value_lazy (struct value *value, int val); /* value_contents() and value_contents_raw() both return the address of the gdb buffer used to hold a copy of the contents of the lval. |