* Fix parameter passing on m68k
@ 2003-05-25 21:14 Andreas Schwab
0 siblings, 0 replies; only message in thread
From: Andreas Schwab @ 2003-05-25 21:14 UTC (permalink / raw)
To: gdb-patches
On m68k function params are padded to 32 bits. This fixes passing of
small structures.
Andreas.
2003-05-25 Andreas Schwab <schwab@suse.de>
* m68k-tdep.c (m68k_gdbarch_init): Set parm_boundary instead of
stack_align and deprecated_extra_stack_alignment_needed.
(m68k_stack_align): Delete.
--- gdb/m68k-tdep.c.~1.62.~ 2003-05-25 21:53:04.000000000 +0200
+++ gdb/m68k-tdep.c 2003-05-25 22:28:16.000000000 +0200
@@ -176,14 +176,6 @@ m68k_register_name (int regnum)
return register_names[regnum];
}
-/* Stack must be kept short aligned when doing function calls. */
-
-static CORE_ADDR
-m68k_stack_align (CORE_ADDR addr)
-{
- return ((addr + 1) & ~1);
-}
-
/* Index within `registers' of the first byte of the space for
register regnum. */
@@ -922,8 +914,7 @@ m68k_gdbarch_init (struct gdbarch_info i
/* Stack grows down. */
set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
- set_gdbarch_stack_align (gdbarch, m68k_stack_align);
- set_gdbarch_deprecated_extra_stack_alignment_needed (gdbarch, 1);
+ set_gdbarch_parm_boundary (gdbarch, 32);
set_gdbarch_believe_pcc_promotion (gdbarch, 1);
set_gdbarch_decr_pc_after_break (gdbarch, 2);
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-05-25 21:14 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-05-25 21:14 Fix parameter passing on m68k Andreas Schwab
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox