* remote-vxsparc.c (vx_convert_to_virtual, vx_convert_from_virtual):
authorStan Shebs <shebs@codesourcery.com>
Wed, 24 Jan 1996 02:59:06 +0000 (02:59 +0000)
committerStan Shebs <shebs@codesourcery.com>
Wed, 24 Jan 1996 02:59:06 +0000 (02:59 +0000)
Remove, never used.
* config/sparc/vxsparc.mt (TDEPFILES): Add remote-vxsparc.o.
Make Sparc VxWorks GDB compile

gdb/ChangeLog
gdb/config/sparc/vxsparc.mt
gdb/remote-vxsparc.c

index 7f771cea233c2f732f700c2273d610b7ac8e4a6b..1441d3ce33ee28cfbf13cbf11cedfd3c79a6ba0a 100644 (file)
@@ -1,3 +1,9 @@
+Tue Jan 23 18:54:09 1996  Stan Shebs  <shebs@andros.cygnus.com>
+
+       * remote-vxsparc.c (vx_convert_to_virtual, vx_convert_from_virtual):
+       Remove, never used.
+       * config/sparc/vxsparc.mt (TDEPFILES): Add remote-vxsparc.o.
+
 Tue Jan 23 14:36:05 1996  Per Bothner  <bothner@kalessin.cygnus.com>
 
        * ch-exp.c (parse_tuple):  Error if invalid mode.
@@ -45,9 +51,11 @@ Tue Jan 23 13:08:26 1996  Jeffrey A Law  (law@cygnus.com)
 
 Tue Jan 23 09:00:48 1996  Doug Evans  <dje@charmed.cygnus.com>
 
-       * gdbtk.c (gdb_disassemble): Rework disassemble_info initialization.
-       Pass fprintf_unfiltered to INIT_DISASSEMBLE_INFO.
-       * printcmd.c (print_insn): Likewise.
+       * printcmd.c (print_insn): Pass fprintf_unfiltered to
+       INIT_DISASSEMBLE_INFO.
+start-sanitize-gdbtk
+       * gdbtk.c (gdb_disassemble): Likewise.
+end-sanitize-gdbtk
 
 Mon Jan 22 16:59:40 1996  Stan Shebs  <shebs@andros.cygnus.com>
 
index 3ae896a51c44f847ab8ef2bab86286fe27cd2c8d..9eadd17451d3d0dcf852f63356ac5d0ac45b6a73 100644 (file)
@@ -1,3 +1,3 @@
 # Target: SPARC running VxWorks
-TDEPFILES= sparc-tdep.o remote-vx.o xdr_ld.o xdr_ptrace.o xdr_rdb.o
+TDEPFILES= sparc-tdep.o remote-vx.o remote-vxsparc.o xdr_ld.o xdr_ptrace.o xdr_rdb.o
 TM_FILE= tm-vxsparc.h
index fc1467d6fa3000bc569033df8009e33d6fb58e2e..068254240fab9aa7415f5774f3fa29fe89988023 100644 (file)
@@ -194,46 +194,3 @@ vx_write_register (regno)
                            PTRACE_SETFPREGS);
     }
 }
-
-/* Convert from an extended float to a double.
-   The extended float is stored as raw data pointed to by FROM.
-   Return the converted value as raw data in the double pointed to by TO.  */
-
-void
-vx_convert_to_virtual (regno, from, to)
-     int regno;
-     char *from;
-     char *to;
-{
-  if (REGISTER_CONVERTIBLE (regno)) 
-    {
-      if (target_has_fp)
-        ieee_extended_to_double (&ext_format_sparc, from, to);
-      else
-       bzero (to, sizeof (double));
-    }
-  else
-    bcopy (from, to, REGISTER_VIRTUAL_SIZE (regno));
-}
-
-/* The converse:  convert from a double to an extended float.
-   The double is stored as raw data pointed to by FROM.
-   Return the converted value as raw data in the extended
-   float pointed to by TO.  */
-
-void
-vx_convert_from_virtual (regno, from, to)
-     int regno;
-     char *from;
-     char *to;
-{
-  if (REGISTER_CONVERTIBLE (regno)) 
-    {
-      if (target_has_fp)
-        double_to_ieee_extended (&ext_format_sparc, from, to);
-      else
-       bzero (to, REGISTER_RAW_SIZE (FP0_REGNUM));
-    }
-  else
-    bcopy (from, to, REGISTER_VIRTUAL_SIZE (regno));
-}