mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 04:29:49 +00:00
* arm-tdep.c (arm_return_value): Change type of readbuf and
writebuf arguments to `gdb_byte *'.
This commit is contained in:
parent
469db03345
commit
2522416608
@ -1,5 +1,8 @@
|
||||
2006-01-15 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* arm-tdep.c (arm_return_value): Change type of readbuf and
|
||||
writebuf arguments to `gdb_byte *'.
|
||||
|
||||
* s390-tdep.c: Do not include "tm.h" and "../bfd/bfd.h".
|
||||
* Makefile.in (s390-tdep.o): Update dependencies.
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
/* Common target dependent code for GDB on ARM systems.
|
||||
|
||||
Copyright (C) 1988, 1989, 1991, 1992, 1993, 1995, 1996, 1998, 1999,
|
||||
2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GDB.
|
||||
|
||||
@ -2258,8 +2259,8 @@ arm_store_return_value (struct type *type, struct regcache *regs,
|
||||
|
||||
static enum return_value_convention
|
||||
arm_return_value (struct gdbarch *gdbarch, struct type *valtype,
|
||||
struct regcache *regcache, void *readbuf,
|
||||
const void *writebuf)
|
||||
struct regcache *regcache, gdb_byte *readbuf,
|
||||
const gdb_byte *writebuf)
|
||||
{
|
||||
if (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
|
||||
|| TYPE_CODE (valtype) == TYPE_CODE_UNION
|
||||
|
Loading…
Reference in New Issue
Block a user