2010-11-16 Nathan Froyd <froydnj@codesourcery.com>
+ * config/xtensa/xtensa.c (function_arg_boundary): Really rename to...
+ (xtensa_function_arg_boundary): ...this.
+ * config/picochip/pichochip.c (picochip_function_arg_boundary): Fix
+ thinko in declaration.
+ (picochip_function_arg, picochip_arg_partial_bytes): Pass proper
+ number of parameters to picochip_function_arg_boundary.
+ (picochip_arg_advance): Likewise.
+
+2010-11-16 Nathan Froyd <froydnj@codesourcery.com>
+
PR target/46512
* config/pa/pa.c (pa_function_arg_boundary): Move TYPE_SIZE accesses
under check for type.
const_tree type, bool named);
void picochip_arg_advance (CUMULATIVE_ARGS * p_cum, enum machine_mode mode,
const_tree type, bool named);
-unsigned int picochip_function_boundary (enum machine_mode mode,
- const_tree type);
+unsigned int picochip_function_arg_boundary (enum machine_mode mode,
+ const_tree type);
int picochip_sched_lookahead (void);
int picochip_sched_issue_rate (void);
/* Compute the alignment and size of the parameter. */
type_align_in_units =
- picochip_function_arg_boundary (mode) / BITS_PER_UNIT;
+ picochip_function_arg_boundary (mode, type) / BITS_PER_UNIT;
type_size_in_units = picochip_compute_arg_size (type, mode);
/* Compute the correct offset (i.e., ensure that the offset meets
/* Compute the alignment and size of the parameter. */
type_align_in_units =
- picochip_function_arg_boundary (mode) / BITS_PER_UNIT;
+ picochip_function_arg_boundary (mode, type) / BITS_PER_UNIT;
type_size_in_units = picochip_compute_arg_size (type, mode);
/* Compute the correct offset (i.e., ensure that the offset meets
/* Compute the alignment and size of the parameter. */
type_align_in_units =
- picochip_function_arg_boundary (mode) / BITS_PER_UNIT;
+ picochip_function_arg_boundary (mode, type) / BITS_PER_UNIT;
type_size_in_units = picochip_compute_arg_size (type, mode);
/* Compute the correct offset (i.e., ensure that the offset meets