]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdb/remote-vxmips.c
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gdb / remote-vxmips.c
index bce5f116c88e91aac5f04c543528d042882e1521..c65ac015ead74f3c0d10261d40ca81364ab73caa 100644 (file)
@@ -17,7 +17,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include <stdio.h>
 #include "defs.h"
@@ -199,31 +199,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.
-   NOTE: mips uses standard two word doubles.  */
-
-void
-vx_convert_to_virtual (regno, from, to)
-      int regno;
-      char *from;
-      char *to;
-{
-  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;
-{
-  bcopy (from, to, REGISTER_VIRTUAL_SIZE (regno));
-}