mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
2003-11-13 Andrew Cagney <cagney@redhat.com>
* ppc-linux-tdep.c (ppc_linux_return_value): Fix parameter order.
This commit is contained in:
parent
a22286a98f
commit
475b6ddd32
@ -1,3 +1,7 @@
|
|||||||
|
2003-11-13 Andrew Cagney <cagney@redhat.com>
|
||||||
|
|
||||||
|
* ppc-linux-tdep.c (ppc_linux_return_value): Fix parameter order.
|
||||||
|
|
||||||
2003-11-13 Jim Blandy <jimb@redhat.com>
|
2003-11-13 Jim Blandy <jimb@redhat.com>
|
||||||
|
|
||||||
* cp-namespace.c: Doc fix.
|
* cp-namespace.c: Doc fix.
|
||||||
|
@ -598,7 +598,8 @@ ppc_linux_memory_remove_breakpoint (CORE_ADDR addr, char *contents_cache)
|
|||||||
|
|
||||||
static enum return_value_convention
|
static enum return_value_convention
|
||||||
ppc_linux_return_value (struct gdbarch *gdbarch, struct type *valtype,
|
ppc_linux_return_value (struct gdbarch *gdbarch, struct type *valtype,
|
||||||
struct regcache *regcache, const void *inval, void *outval)
|
struct regcache *regcache, void *readbuf,
|
||||||
|
const void *writebuf)
|
||||||
{
|
{
|
||||||
if ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
|
if ((TYPE_CODE (valtype) == TYPE_CODE_STRUCT
|
||||||
|| TYPE_CODE (valtype) == TYPE_CODE_UNION)
|
|| TYPE_CODE (valtype) == TYPE_CODE_UNION)
|
||||||
@ -606,7 +607,8 @@ ppc_linux_return_value (struct gdbarch *gdbarch, struct type *valtype,
|
|||||||
&& TYPE_VECTOR (valtype)))
|
&& TYPE_VECTOR (valtype)))
|
||||||
return RETURN_VALUE_STRUCT_CONVENTION;
|
return RETURN_VALUE_STRUCT_CONVENTION;
|
||||||
else
|
else
|
||||||
return ppc_sysv_abi_return_value (gdbarch, valtype, regcache, inval, outval);
|
return ppc_sysv_abi_return_value (gdbarch, valtype, regcache, readbuf,
|
||||||
|
writebuf);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fetch (and possibly build) an appropriate link_map_offsets
|
/* Fetch (and possibly build) an appropriate link_map_offsets
|
||||||
|
Loading…
Reference in New Issue
Block a user