+2004-07-28 Alan Modra <amodra@bigpond.net.au>
+
+ * config/rs6000/rs6000.c (function_arg_padding): Pad SFmode upwards.
+
2004-07-27 Richard Henderson <rth@redhat.com>
* function.c (assign_stack_local_1): Widen alignment to HOST_WIDE_INT
return upward;
}
- /* SFmode parameters are not padded. */
- if (TARGET_64BIT && mode == SFmode)
- return none;
+ /* SFmode parameters are padded upwards. */
+ if (mode == SFmode)
+ return upward;
/* Fall back to the default. */
return DEFAULT_FUNCTION_ARG_PADDING (mode, type);