summaryrefslogtreecommitdiff
path: root/gdb/valprint.c
diff options
context:
space:
mode:
authorPedro Alves <pedro@codesourcery.com>2011-02-14 11:23:33 +0000
committerPedro Alves <pedro@codesourcery.com>2011-02-14 11:23:33 +0000
commit3db04b22333047072e92464fff090246e5a570d8 (patch)
tree13da58cad8426459e7295f818b7d30e7482c79b8 /gdb/valprint.c
parent67d3c91a65d1fb133b1a45386cbc27bed1fe1490 (diff)
downloadgdb-3db04b22333047072e92464fff090246e5a570d8.tar.gz
gdb/
* value.h (value_available_contents_eq): Declare. * value.c (find_first_range_overlap): New function. (value_available_contents_eq): New function. * valprint.c (val_print_array_elements): Use value_available_contents_eq. * ada-valprint.c (val_print_packed_array_elements): Use value_available_contents_eq. * jv-valprint.c (java_value_print): Use value_available_contents_eq.
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r--gdb/valprint.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c
index 64a4b05f527..fd573c255e7 100644
--- a/gdb/valprint.c
+++ b/gdb/valprint.c
@@ -1242,9 +1242,11 @@ val_print_array_elements (struct type *type,
rep1 = i + 1;
reps = 1;
while (rep1 < len
- && memcmp (valaddr + embedded_offset + i * eltlen,
- valaddr + embedded_offset + rep1 * eltlen,
- eltlen) == 0)
+ && value_available_contents_eq (val,
+ embedded_offset + i * eltlen,
+ val,
+ embedded_offset + rep1 * eltlen,
+ eltlen))
{
++reps;
++rep1;