* config/h8300/h8300.c (round_frame_size): Replace 8 with
BITS_PER_UNIT.
From-SVN: r58493
+2002-10-24 Kazu Hirata <kazu@cs.umass.edu>
+
+ * config/h8300/h8300.c (round_frame_size): Replace 8 with
+ BITS_PER_UNIT.
+
2002-10-24 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.h (EIGHTBIT_CONSTANT_ADDRESS_P): Make it
round_frame_size (size)
int size;
{
- return (size + STACK_BOUNDARY / 8 - 1) & -STACK_BOUNDARY / 8;
+ return ((size + STACK_BOUNDARY / BITS_PER_UNIT - 1)
+ & -STACK_BOUNDARY / BITS_PER_UNIT);
}
/* Compute which registers to push/pop.