diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-02-02 22:34:36 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-02-02 22:34:36 +0000 |
commit | d69fe07ead0b14603cb37fd9659bffc11afa37b1 (patch) | |
tree | 533dc9f35cdcd999b12c8520a7fda6f944af14e0 /gdb/valops.c | |
parent | 46615f07c3db91f7a0f138baec128749604dca43 (diff) | |
download | gdb-d69fe07ead0b14603cb37fd9659bffc11afa37b1.zip gdb-d69fe07ead0b14603cb37fd9659bffc11afa37b1.tar.gz gdb-d69fe07ead0b14603cb37fd9659bffc11afa37b1.tar.bz2 |
2005-02-02 Andrew Cagney <cagney@gnu.org>
* value.h (value_lazy): Declare.
* varobj.c, value.c, valops.c, valarith.c, printcmd.c: Update.
* cp-valprint.c, breakpoint.c, ada-lang.c: Update.
Diffstat (limited to 'gdb/valops.c')
-rw-r--r-- | gdb/valops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/valops.c b/gdb/valops.c index 50b7e7c..442bb51 100644 --- a/gdb/valops.c +++ b/gdb/valops.c @@ -1312,7 +1312,7 @@ search_struct_field (char *name, struct value *arg1, int offset, VALUE_ADDRESS (v2) = VALUE_ADDRESS (arg1); VALUE_FRAME_ID (v2) = VALUE_FRAME_ID (arg1); v2->offset = value_offset (arg1) + boffset; - if (VALUE_LAZY (arg1)) + if (value_lazy (arg1)) VALUE_LAZY (v2) = 1; else memcpy (value_contents_raw (v2), @@ -2763,7 +2763,7 @@ value_slice (struct value *array, int lowbound, int length) slice_range_type); TYPE_CODE (slice_type) = TYPE_CODE (array_type); slice = allocate_value (slice_type); - if (VALUE_LAZY (array)) + if (value_lazy (array)) VALUE_LAZY (slice) = 1; else memcpy (VALUE_CONTENTS (slice), VALUE_CONTENTS (array) + offset, |