*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / f-valprint.c
index a777edd0ae17a60aa26f148ddb7154de8acb9593..b2e327189b51c41d93e6f06c56ffa0e252a1c561 100644 (file)
@@ -407,7 +407,7 @@ f_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset,
            }
 
          if (addressprint && format != 's')
-           deprecated_print_address_numeric (addr, 1, stream);
+           fputs_filtered (paddress (addr), stream);
 
          /* For a pointer to char or unsigned char, also print the string
             pointed to, unless pointer is null.  */
@@ -431,7 +431,7 @@ f_val_print (struct type *type, const gdb_byte *valaddr, int embedded_offset,
          CORE_ADDR addr
            = extract_typed_address (valaddr + embedded_offset, type);
          fprintf_filtered (stream, "@");
-         deprecated_print_address_numeric (addr, 1, stream);
+         fputs_filtered (paddress (addr), stream);
          if (deref_ref)
            fputs_filtered (": ", stream);
        }
This page took 0.023119 seconds and 4 git commands to generate.