2005-02-14 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / cli / cli-cmds.c
index 0e93182fbf396bed9b1d1206754918153bfaddef..ca093320b2152cfd88b83cf389f31d2e8a3ade1b 100644 (file)
@@ -604,14 +604,14 @@ edit_command (char *arg, int from_tty)
           sym = find_pc_function (sal.pc);
           if (sym)
            {
-             print_address_numeric (sal.pc, 1, gdb_stdout);
+             deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
              printf_filtered (" is in ");
              fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout);
              printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
            }
           else
            {
-             print_address_numeric (sal.pc, 1, gdb_stdout);
+             deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
              printf_filtered (" is at %s:%d.\n",
                               sal.symtab->filename, sal.line);
            }
@@ -771,14 +771,14 @@ list_command (char *arg, int from_tty)
       sym = find_pc_function (sal.pc);
       if (sym)
        {
-         print_address_numeric (sal.pc, 1, gdb_stdout);
+         deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
          printf_filtered (" is in ");
          fputs_filtered (SYMBOL_PRINT_NAME (sym), gdb_stdout);
          printf_filtered (" (%s:%d).\n", sal.symtab->filename, sal.line);
        }
       else
        {
-         print_address_numeric (sal.pc, 1, gdb_stdout);
+         deprecated_print_address_numeric (sal.pc, 1, gdb_stdout);
          printf_filtered (" is at %s:%d.\n",
                           sal.symtab->filename, sal.line);
        }
@@ -895,9 +895,9 @@ disassemble_command (char *arg, int from_tty)
       else
        {
          printf_filtered ("from ");
-         print_address_numeric (low, 1, gdb_stdout);
+         deprecated_print_address_numeric (low, 1, gdb_stdout);
          printf_filtered (" to ");
-         print_address_numeric (high, 1, gdb_stdout);
+         deprecated_print_address_numeric (high, 1, gdb_stdout);
          printf_filtered (":\n");
        }
 
This page took 0.024585 seconds and 4 git commands to generate.