2005-02-06 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / c-valprint.c
index 6f106195811f72f50ef8a14379484682d6233bad..64f0f42537964bfa40cc8a8b89a01c07ac4ce1d1 100644 (file)
@@ -233,7 +233,7 @@ c_val_print (struct type *type, const bfd_byte *valaddr, int embedded_offset,
                      wtype = TYPE_TARGET_TYPE (type);
                    }
                  vt_val = value_at (wtype, vt_address);
-                 val_print (value_type (vt_val), VALUE_CONTENTS (vt_val), 0,
+                 val_print (value_type (vt_val), value_contents (vt_val), 0,
                             VALUE_ADDRESS (vt_val), stream, format,
                             deref_ref, recurse + 1, pretty);
                  if (pretty)
@@ -284,7 +284,7 @@ c_val_print (struct type *type, const bfd_byte *valaddr, int embedded_offset,
               unpack_pointer (lookup_pointer_type (builtin_type_void),
                               valaddr + embedded_offset));
              val_print (value_type (deref_val),
-                        VALUE_CONTENTS (deref_val),
+                        value_contents (deref_val),
                         0,
                         VALUE_ADDRESS (deref_val),
                         stream,
@@ -446,7 +446,7 @@ c_val_print (struct type *type, const bfd_byte *valaddr, int embedded_offset,
     case TYPE_CODE_METHOD:
       {
        struct value *v = value_at (type, address);
-       cp_print_class_method (VALUE_CONTENTS (value_addr (v)),
+       cp_print_class_method (value_contents (value_addr (v)),
                               lookup_pointer_type (type), stream);
        break;
       }
This page took 0.024146 seconds and 4 git commands to generate.