builtin-apply-2.c, [...]: Correct STACK_ARGUMENTS_SIZE for MMIX.

* gcc.dg/torture/stackalign/builtin-apply-2.c,
	gcc.dg/builtin-apply2.c: Correct STACK_ARGUMENTS_SIZE for MMIX.

From-SVN: r192483
This commit is contained in:
Hans-Peter Nilsson 2012-10-15 22:38:37 +00:00 committed by Hans-Peter Nilsson
parent c646194bd3
commit 6f9ca45b07
3 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-10-16 Hans-Peter Nilsson <hp@bitrange.com>
* gcc.dg/torture/stackalign/builtin-apply-2.c,
gcc.dg/builtin-apply2.c: Correct STACK_ARGUMENTS_SIZE for MMIX.
2012-10-15 Oleg Endo <olegendo@gcc.gnu.org>
PR target/54925

View File

@ -17,6 +17,9 @@
E, F and G are passed on stack. So the size of the stack argument
data is 20. */
#define STACK_ARGUMENTS_SIZE 20
#elif defined __MMIX__
/* No parameters on stack for bar. */
#define STACK_ARGUMENTS_SIZE 0
#else
#define STACK_ARGUMENTS_SIZE 64
#endif

View File

@ -16,6 +16,9 @@
E, F and G are passed on stack. So the size of the stack argument
data is 20. */
#define STACK_ARGUMENTS_SIZE 20
#elif defined __MMIX__
/* No parameters on stack for bar. */
#define STACK_ARGUMENTS_SIZE 0
#else
#define STACK_ARGUMENTS_SIZE 64
#endif