(sim_store_register, sim_fetch_register): On success, return
length, instead of -1.
+2012-08-01 Kevin Buettner <kevinb@redhat.com>
+
+ * wrapper.c (libiberty.h): Include.
+ (sim_store_register, sim_fetch_register): On success, return
+ length, instead of -1.
+
2012-06-15 Joel Brobecker <brobecker@adacore.com>
* config.in, configure: Regenerate.
#include "run-sim.h"
#include "gdb/sim-arm.h"
#include "gdb/signals.h"
+#include "libiberty.h"
host_callback *sim_callback;
SIM_DESC sd ATTRIBUTE_UNUSED;
int rn;
unsigned char *memory;
- int length ATTRIBUTE_UNUSED;
+ int length;
{
init ();
return 0;
}
- return -1;
+ return length;
}
int
SIM_DESC sd ATTRIBUTE_UNUSED;
int rn;
unsigned char *memory;
- int length ATTRIBUTE_UNUSED;
+ int length;
{
ARMword regval;
+ int len = length;
init ();
return 0;
}
- while (length)
+ while (len)
{
tomem (state, memory, regval);
- length -= 4;
+ len -= 4;
memory += 4;
regval = 0;
}
- return -1;
+ return length;
}
#ifdef SIM_TARGET_SWITCHES