+Mon Nov 23 17:07:37 1998 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * interp.c (get_cell, sim_monitor, fetch_str, CoProcPresent):
+ Pacify GCC.
+
start-sanitize-tx19
Mon Nov 23 16:51:02 1998 Andrew Cagney <cagney@b1.cygnus.com>
/* Read a null terminated string from memory, return in a buffer */
static char *
-fetch_str (sd, addr)
- SIM_DESC sd;
- address_word addr;
+fetch_str (SIM_DESC sd,
+ address_word addr)
{
char *buf;
int nr = 0;
}
/* Simple monitor interface (currently setup for the IDT and PMON monitors) */
-void
+static void
sim_monitor (SIM_DESC sd,
sim_cpu *cpu,
address_word cia,
/*-- co-processor support routines ------------------------------------------*/
static int UNUSED
-CoProcPresent(coproc_number)
- unsigned int coproc_number;
+CoProcPresent(unsigned int coproc_number)
{
/* Return TRUE if simulator provides a model for the given co-processor number */
return(0);
#define NUMCELLS 16
#define CELLSIZE 32
static char*
-get_cell()
+get_cell (void)
{
static char buf[NUMCELLS][CELLSIZE];
static int cell=0;