mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
2004-05-05 Andrew Cagney <cagney@redhat.com>
* gdbarch.sh (PARM_BOUNDARY): Delete. gdbarch.h, gdbarch.c: Re-generate. * valops.c (PARM_BOUNDARY): Delete macro. (value_push): Delete PARM_BOUNDARY code. * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
This commit is contained in:
@ -229,7 +229,6 @@ struct gdbarch
|
||||
gdbarch_deprecated_reg_struct_has_addr_ftype *deprecated_reg_struct_has_addr;
|
||||
gdbarch_stabs_argument_has_addr_ftype *stabs_argument_has_addr;
|
||||
int frame_red_zone_size;
|
||||
int parm_boundary;
|
||||
const struct floatformat * float_format;
|
||||
const struct floatformat * double_format;
|
||||
const struct floatformat * long_double_format;
|
||||
@ -390,7 +389,6 @@ struct gdbarch startup_gdbarch =
|
||||
0, /* deprecated_reg_struct_has_addr */
|
||||
default_stabs_argument_has_addr, /* stabs_argument_has_addr */
|
||||
0, /* frame_red_zone_size */
|
||||
0, /* parm_boundary */
|
||||
0, /* float_format */
|
||||
0, /* double_format */
|
||||
0, /* long_double_format */
|
||||
@ -1875,14 +1873,6 @@ gdbarch_dump (struct gdbarch *current_gdbarch, struct ui_file *file)
|
||||
"gdbarch_dump: NUM_REGS = %d\n",
|
||||
NUM_REGS);
|
||||
#endif
|
||||
#ifdef PARM_BOUNDARY
|
||||
fprintf_unfiltered (file,
|
||||
"gdbarch_dump: PARM_BOUNDARY # %s\n",
|
||||
XSTRING (PARM_BOUNDARY));
|
||||
fprintf_unfiltered (file,
|
||||
"gdbarch_dump: PARM_BOUNDARY = %d\n",
|
||||
PARM_BOUNDARY);
|
||||
#endif
|
||||
#ifdef PC_REGNUM
|
||||
fprintf_unfiltered (file,
|
||||
"gdbarch_dump: PC_REGNUM # %s\n",
|
||||
@ -4673,22 +4663,6 @@ set_gdbarch_frame_red_zone_size (struct gdbarch *gdbarch,
|
||||
gdbarch->frame_red_zone_size = frame_red_zone_size;
|
||||
}
|
||||
|
||||
int
|
||||
gdbarch_parm_boundary (struct gdbarch *gdbarch)
|
||||
{
|
||||
gdb_assert (gdbarch != NULL);
|
||||
if (gdbarch_debug >= 2)
|
||||
fprintf_unfiltered (gdb_stdlog, "gdbarch_parm_boundary called\n");
|
||||
return gdbarch->parm_boundary;
|
||||
}
|
||||
|
||||
void
|
||||
set_gdbarch_parm_boundary (struct gdbarch *gdbarch,
|
||||
int parm_boundary)
|
||||
{
|
||||
gdbarch->parm_boundary = parm_boundary;
|
||||
}
|
||||
|
||||
const struct floatformat *
|
||||
gdbarch_float_format (struct gdbarch *gdbarch)
|
||||
{
|
||||
|
Reference in New Issue
Block a user