diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-04-30 19:49:40 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1991-04-30 19:49:40 +0000 |
commit | f0ca24b90156c6286c3702dae9f05b2400a0bcf6 (patch) | |
tree | 980d19f4c7ed049fa9886cc732d872f8a8f930fa /gdb/sun386-xdep.c | |
parent | 94ac73c174d9e38c8567f66e6dd0b26cc4b870c8 (diff) | |
download | gdb-f0ca24b90156c6286c3702dae9f05b2400a0bcf6.zip gdb-f0ca24b90156c6286c3702dae9f05b2400a0bcf6.tar.gz gdb-f0ca24b90156c6286c3702dae9f05b2400a0bcf6.tar.bz2 |
* sun386-xdep.c [!GDB_TARGET_IS_SUN386]: Just provide empty
functions which don't do anything.
Diffstat (limited to 'gdb/sun386-xdep.c')
-rw-r--r-- | gdb/sun386-xdep.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gdb/sun386-xdep.c b/gdb/sun386-xdep.c index d9f1cb5..e15d6a0 100644 --- a/gdb/sun386-xdep.c +++ b/gdb/sun386-xdep.c @@ -19,6 +19,8 @@ You should have received a copy of the GNU General Public License along with GDB; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#if defined (GDB_TARGET_IS_SUN386) + #include <stdio.h> #include "defs.h" #include "param.h" @@ -250,3 +252,28 @@ double_to_i387 (from, to) asm ("fstpt (%eax)"); asm ("fwait"); } +#else /* Not sun386 target. */ + +/* These functions shouldn't be called when we're cross-debugging. */ + +void +fetch_inferior_registers () +{ +} + +/* ARGSUSED */ +store_inferior_registers (regno) + int regno; +{ +} + +/* ARGSUSED */ +void +fetch_core_registers (core_reg_sect, core_reg_size, which) + char *core_reg_sect; + unsigned core_reg_size; + int which; +{ +} + +#endif /* Not sun386 target. */ |