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/valarith.c | |
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/valarith.c')
-rw-r--r-- | gdb/valarith.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/valarith.c b/gdb/valarith.c index 00f20e1..418397a 100644 --- a/gdb/valarith.c +++ b/gdb/valarith.c @@ -1367,7 +1367,7 @@ value_complement (struct value *arg1) Return -1 if out of range, -2 other error. */ int -value_bit_index (struct type *type, char *valaddr, int index) +value_bit_index (struct type *type, const bfd_byte *valaddr, int index) { LONGEST low_bound, high_bound; LONGEST word; |