Browse Source

Protoization.

binutils-2_11-branch
Kevin Buettner 26 years ago
parent
commit
732a6b2d95
  1. 4
      gdb/ChangeLog
  2. 6
      gdb/alpha-tdep.c

4
gdb/ChangeLog

@ -1,3 +1,7 @@
2000-08-02 Kevin Buettner <kevinb@redhat.com>
* alpha-tdep.c (alpha_extract_return_value): Protoize.
2000-08-02 Jimmy Guo <guo@hpcleara.cup.hp.com>
* gdbarch.sh: Add print_p field for CALL_DUMMY_BREAKPINT_OFFSET

6
gdb/alpha-tdep.c

@ -1316,10 +1316,8 @@ alpha_register_convert_to_raw (struct type *valtype, int regnum,
extract and copy its value into `valbuf'. */
void
alpha_extract_return_value (valtype, regbuf, valbuf)
struct type *valtype;
char regbuf[REGISTER_BYTES];
char *valbuf;
alpha_extract_return_value (struct type *valtype,
char regbuf[REGISTER_BYTES], char *valbuf)
{
if (TYPE_CODE (valtype) == TYPE_CODE_FLT)
alpha_register_convert_to_virtual (FP0_REGNUM, valtype,

Loading…
Cancel
Save