diff options
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/value.h b/gdb/value.h index ed4d9ee..ba435bc 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -203,9 +203,7 @@ extern bfd_byte *value_contents_raw (struct value *); pointer by the embedded_offset value. */ extern bfd_byte *value_contents_all_raw (struct value *); -#define VALUE_CONTENTS_ALL(val) \ - ((void) (VALUE_LAZY(val) && value_fetch_lazy(val)), \ - (val)->aligner.contents) +extern const bfd_byte *value_contents_all (struct value *); extern int value_fetch_lazy (struct value *val); |