* tui/tui-regs.c (tui_register_format): Remove dead code.
authorPedro Alves <palves@redhat.com>
Tue, 25 Jan 2011 18:18:15 +0000 (18:18 +0000)
committerPedro Alves <palves@redhat.com>
Tue, 25 Jan 2011 18:18:15 +0000 (18:18 +0000)
gdb/ChangeLog
gdb/tui/tui-regs.c

index c56abe1..1af7d49 100644 (file)
@@ -1,5 +1,9 @@
 2011-01-25  Pedro Alves  <pedro@codesourcery.com>
 
+       * tui/tui-regs.c (tui_register_format): Remove dead code.
+
+2011-01-25  Pedro Alves  <pedro@codesourcery.com>
+
        * printcmd.c (print_formatted): Use val_print_scalar_formatted
        instead of print_scalar_formatted.
        (print_scalar_formatted): Don't handle 's' format strings here,
index fb70e9d..1d2bb23 100644 (file)
@@ -702,23 +702,7 @@ tui_register_format (struct frame_info *frame,
   stream = tui_sfileopen (256);
   gdb_stdout = stream;
   cleanups = make_cleanup (tui_restore_gdbout, (void*) old_stdout);
-  if (TYPE_VECTOR (type) != 0 && 0)
-    {
-      gdb_byte buf[MAX_REGISTER_SIZE];
-      int len;
-      struct value_print_options opts;
-
-      len = register_size (gdbarch, regnum);
-      fprintf_filtered (stream, "%-14s ", name);
-      get_frame_register (frame, regnum, buf);
-      get_formatted_print_options (&opts, 'f');
-      print_scalar_formatted (buf, type, &opts, len, stream);
-    }
-  else
-    {
-      gdbarch_print_registers_info (gdbarch, stream,
-                                    frame, regnum, 1);
-    }
+  gdbarch_print_registers_info (gdbarch, stream, frame, regnum, 1);
 
   /* Save formatted output in the buffer.  */
   p = tui_file_get_strbuf (stream);