diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-05-10 18:58:44 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-05-10 18:58:44 +0000 |
commit | 7bcda025ec2abe0f8a8583a11083ee06e6b46d86 (patch) | |
tree | 7a1e525f38b21b59a15c914efab7c369e0b95201 /gdb/ppc-bdm.c | |
parent | cca0d3b0302614184413157e253136ebf3aa5295 (diff) | |
download | gdb-7bcda025ec2abe0f8a8583a11083ee06e6b46d86.zip gdb-7bcda025ec2abe0f8a8583a11083ee06e6b46d86.tar.gz gdb-7bcda025ec2abe0f8a8583a11083ee06e6b46d86.tar.bz2 |
Back out change. The NetBSD changes need Jason Thorpe's approval, but
he hasn't reviewed it yet.
Diffstat (limited to 'gdb/ppc-bdm.c')
-rw-r--r-- | gdb/ppc-bdm.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/gdb/ppc-bdm.c b/gdb/ppc-bdm.c index cf37b2e..59fac1f 100644 --- a/gdb/ppc-bdm.c +++ b/gdb/ppc-bdm.c @@ -37,7 +37,6 @@ #include "ocd.h" #include "ppc-tdep.h" #include "regcache.h" -#include "gdb_assert.h" static void bdm_ppc_open (char *name, int from_tty); @@ -194,12 +193,6 @@ bdm_ppc_fetch_registers (int regno) return; /* Unsupported register */ } - /* FIXME: jimb/2004-05-04: I'm not sure how to adapt this code to - processors that lack floating point registers, and I don't have - have the equipment to test it. So we'll leave that case for the - next person who encounters it. */ - gdb_assert (ppc_floating_point_unit_p (current_gdbarch)); - #if 1 /* Can't ask for floating point regs on ppc 8xx, also need to avoid asking for the mq register. */ @@ -294,12 +287,6 @@ bdm_ppc_store_registers (int regno) if (first_bdm_regno == -1) return; /* Unsupported register */ - /* FIXME: jimb/2004-05-04: I'm not sure how to adapt this code to - processors that lack floating point registers, and I don't have - have the equipment to test it. So we'll leave that case for the - next person who encounters it. */ - gdb_assert (ppc_floating_point_unit_p (current_gdbarch)); - for (i = first_regno; i <= last_regno; i++) { int bdm_regno; |