diff options
author | Andrew Cagney <cagney@redhat.com> | 2005-01-28 16:45:16 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2005-01-28 16:45:16 +0000 |
commit | c84141d67e109faa68267eba2fbfbb4840a103c2 (patch) | |
tree | 76da83406b25e03790239d7c4037f6120d75e408 /gdb/value.h | |
parent | acf0f27f9e1e9d8258bf8739b6e947fd07a563f2 (diff) | |
download | gdb-c84141d67e109faa68267eba2fbfbb4840a103c2.zip gdb-c84141d67e109faa68267eba2fbfbb4840a103c2.tar.gz gdb-c84141d67e109faa68267eba2fbfbb4840a103c2.tar.bz2 |
2005-01-28 Andrew Cagney <cagney@gnu.org>
* value.h (value_bit_index, print_floating)
(find_rt_vbase_offset): Make buffer a const bfd_byte.
* valprint.c (print_floating): Update.
* valarith.c (value_bit_index): Update.
* valops.c (find_rt_vbase_offset): Update.
Diffstat (limited to 'gdb/value.h')
-rw-r--r-- | gdb/value.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/value.h b/gdb/value.h index be348a0..50b0932 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -382,7 +382,8 @@ extern struct value *register_value_being_returned (struct type *valtype, extern struct value *value_in (struct value *element, struct value *set); -extern int value_bit_index (struct type *type, char *addr, int index); +extern int value_bit_index (struct type *type, const bfd_byte *addr, + int index); extern int using_struct_return (struct type *value_type, int gcc_p); @@ -466,7 +467,7 @@ extern char *baseclass_addr (struct type *type, int index, char *valaddr, extern void print_longest (struct ui_file *stream, int format, int use_local, LONGEST val); -extern void print_floating (char *valaddr, struct type *type, +extern void print_floating (const bfd_byte *valaddr, struct type *type, struct ui_file *stream); extern int value_print (struct value *val, struct ui_file *stream, int format, @@ -515,8 +516,8 @@ extern struct value *value_slice (struct value *, int, int); extern struct value *value_literal_complex (struct value *, struct value *, struct type *); -extern void find_rt_vbase_offset (struct type *, struct type *, char *, int, - int *, int *); +extern void find_rt_vbase_offset (struct type *, struct type *, + const bfd_byte *, int, int *, int *); extern struct value *find_function_in_inferior (const char *); |