Change print_field_values to use value-based API
[deliverable/binutils-gdb.git] / gdb / ada-valprint.c
index fc34ca5e6e2259065ef06d335c6d9d4c59b2aadb..8631f7ab228304f933f73bdec8f4bd8d6abe1648 100644 (file)
@@ -684,10 +684,7 @@ print_field_values (struct type *type, const gdb_byte *valaddr,
                     bit_size, TYPE_FIELD_TYPE (type, i));
              opts = *options;
              opts.deref_ref = 0;
-             val_print (TYPE_FIELD_TYPE (type, i),
-                        value_embedded_offset (v), 0,
-                        stream, recurse + 1, v,
-                        &opts, language);
+             common_val_print (v, stream, recurse + 1, &opts, language);
            }
        }
       else
@@ -695,9 +692,12 @@ print_field_values (struct type *type, const gdb_byte *valaddr,
          struct value_print_options opts = *options;
 
          opts.deref_ref = 0;
-         val_print (TYPE_FIELD_TYPE (type, i),
-                    (offset + TYPE_FIELD_BITPOS (type, i) / HOST_CHAR_BIT),
-                    0, stream, recurse + 1, val, &opts, language);
+
+         LONGEST local_off = (offset + TYPE_FIELD_BITPOS (type, i)
+                              / HOST_CHAR_BIT);
+         struct value *v = value_from_contents (TYPE_FIELD_TYPE (type, i),
+                                                valaddr + local_off);
+         common_val_print (v, stream, recurse + 1, &opts, language);
        }
       annotate_field_end ();
     }
This page took 0.02561 seconds and 4 git commands to generate.