2005-05-22 Mark Kettenis <kettenis@gnu.org>
+ * arm-tdep.c (arm_extract_return_value, arm_store_return_value):
+ Change type of last argument to `gdb_byte *'.
+
* configure.host: Add arm*-*-openbsd*.
* configure.tgt: Add arm*-*-openbsd*.
format, into VALBUF. */
static void
-arm_extract_return_value (struct type *type,
- struct regcache *regs,
- void *dst)
+arm_extract_return_value (struct type *type, struct regcache *regs,
+ gdb_byte *valbuf)
{
- bfd_byte *valbuf = dst;
-
if (TYPE_CODE_FLT == TYPE_CODE (type))
{
switch (gdbarch_tdep (current_gdbarch)->fp_model)
static void
arm_store_return_value (struct type *type, struct regcache *regs,
- const void *src)
+ const gdb_byte *valbuf)
{
- const bfd_byte *valbuf = src;
-
if (TYPE_CODE (type) == TYPE_CODE_FLT)
{
char buf[MAX_REGISTER_SIZE];