Commit 47035d1f by Yufeng Zhang Committed by Yufeng Zhang

builtin-apply-2.c: set STACK_ARGUMENTS_SIZE with 0 if __aarch64__ is defined.

gcc/testsuite/

	* gcc.dg/torture/stackalign/builtin-apply-2.c: set
	STACK_ARGUMENTS_SIZE with 0 if __aarch64__ is defined.

From-SVN: r200204
parent d53e2f99
2013-06-19 Yufeng Zhang <yufeng.zhang@arm.com>
* gcc.dg/torture/stackalign/builtin-apply-2.c: set
STACK_ARGUMENTS_SIZE with 0 if __aarch64__ is defined.
2013-06-19 Jeff Law <law@redhat.com>
* gcc.dg/tree-ssa/forwprop-28.c: New test.
......
......@@ -16,7 +16,7 @@
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__
#elif defined __aarch64__ || defined __MMIX__
/* No parameters on stack for bar. */
#define STACK_ARGUMENTS_SIZE 0
#else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment