Revert accidentally committed changes that aren't ready yet.

This commit is contained in:
Kevin Buettner 2010-05-28 17:21:40 +00:00
parent 12cb73884e
commit c91e8ecef5
1 changed files with 0 additions and 7 deletions

View File

@ -36,7 +36,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
#include "load.h"
#include "syscalls.h"
#include "err.h"
#include "trace.h"
/* Ideally, we'd wrap up all the minisim's data structures in an
object and pass that around. However, neither GDB nor run needs
@ -404,9 +403,6 @@ reg_size (enum sim_rx_regnum regno)
case sim_rx_fpsw_regnum:
size = sizeof (regs.r_fpsw);
break;
case sim_rx_acc_regnum:
size = sizeof (regs.r_acc);
break;
default:
size = 0;
break;
@ -507,9 +503,6 @@ sim_fetch_register (SIM_DESC sd, int regno, unsigned char *buf, int length)
case sim_rx_fpsw_regnum:
val = get_reg (fpsw);
break;
case sim_rx_acc_regnum:
val = ((DI) get_reg (acchi) << 32) | get_reg (acclo);
break;
default:
fprintf (stderr, "rx minisim: unrecognized register number: %d\n",
regno);