summaryrefslogtreecommitdiff
path: root/gdb/valops.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2005-01-28 16:45:16 +0000
committerAndrew Cagney <cagney@redhat.com>2005-01-28 16:45:16 +0000
commiteb3618cf08b6a152d6774d59c06240e41a0c5e34 (patch)
tree5ac4d4e4abb88ff5c49f05701e2d7e4530707953 /gdb/valops.c
parent4ad812858579d74843a3776aaf8a1637e76f43a5 (diff)
downloadgdb-eb3618cf08b6a152d6774d59c06240e41a0c5e34.tar.gz
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/valops.c')
-rw-r--r--gdb/valops.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/valops.c b/gdb/valops.c
index c708fac590a..e17ca3c2845 100644
--- a/gdb/valops.c
+++ b/gdb/valops.c
@@ -1354,8 +1354,9 @@ search_struct_field (char *name, struct value *arg1, int offset,
* conventions. */
void
-find_rt_vbase_offset (struct type *type, struct type *basetype, char *valaddr,
- int offset, int *boffset_p, int *skip_p)
+find_rt_vbase_offset (struct type *type, struct type *basetype,
+ const bfd_byte *valaddr, int offset, int *boffset_p,
+ int *skip_p)
{
int boffset; /* offset of virtual base */
int index; /* displacement to use in virtual table */