* config/pa/pa.c (pa_function_arg_boundary): Add missing comparison.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@166806
138bc75d-0d04-0410-961f-
82ee72b054a4
+2010-11-16 Nathan Froyd <froydnj@codesourcery.com>
+
+ * config/arc/arc.c: Delete pasto.
+ * config/pa/pa.c (pa_function_arg_boundary): Add missing comparison.
+
2010-11-16 Anatoly Sokolov <aesok@post.ru>
* config/mn10300/mn10300.h (PREFERRED_RELOAD_CLASS,
+ ROUND_ADVANCE_ARG (mode, type));
}
-/* If defined, a C expression that gives the alignment boundary, in bits,
- of an argument with the specified mode and type. If it is not defined,
- PARM_BOUNDARY is used for all arguments. */
-#define FUNCTION_ARG_BOUNDARY(MODE, TYPE) \
/* Worker function for TARGET_FUNCTION_ARG_BOUNDARY. */
static unsigned int
? (integer_zerop (size)
|| !TREE_CONSTANT (size)
|| int_size_in_bytes (type) <= UNITS_PER_WORD)
- : GET_MODE_SIZE (mode));
+ : GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
return singleword ? PARM_BOUNDARY : MAX_PARM_BOUNDARY;
}