diff options
author | Stan Shebs <shebs@codesourcery.com> | 1996-02-25 22:05:00 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1996-02-25 22:05:00 +0000 |
commit | 8fa6fcf829ba167f8e10e4a1a25d09a378aed926 (patch) | |
tree | cd067e7cfc9dd5ace6fe6926f38caadb93603dd2 /gdb/remote-vxmips.c | |
parent | 15f4406cf897e77bbe6171917463e89023a98b76 (diff) | |
download | gdb-8fa6fcf829ba167f8e10e4a1a25d09a378aed926.zip gdb-8fa6fcf829ba167f8e10e4a1a25d09a378aed926.tar.gz gdb-8fa6fcf829ba167f8e10e4a1a25d09a378aed926.tar.bz2 |
* configure.in (mips*-*-vxworks*): New config.
* configure: Regenerated.
* config/mips/vxmips.mt, config/mips/tm-vxmips.h: New files.
* remote-vxmips.c (vx_convert_to_virtual, vx_convert_from_virtual):
Remove, never used.
Diffstat (limited to 'gdb/remote-vxmips.c')
-rw-r--r-- | gdb/remote-vxmips.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/gdb/remote-vxmips.c b/gdb/remote-vxmips.c index 4b96e25..c65ac01 100644 --- a/gdb/remote-vxmips.c +++ b/gdb/remote-vxmips.c @@ -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)); -} |