diff options
author | Hans-Peter Nilsson <hp@bitrange.com> | 2012-10-15 22:38:37 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2012-10-15 22:38:37 +0000 |
commit | 6f9ca45b07939ccf7f80f2e25f8f75cfc93f22a3 (patch) | |
tree | ee2297935680849e7a85768fbaaee83014f2418b /gcc | |
parent | c646194bd3f6f67141d605e8d2f17ae8e02b1601 (diff) | |
download | gcc-6f9ca45b07939ccf7f80f2e25f8f75cfc93f22a3.zip gcc-6f9ca45b07939ccf7f80f2e25f8f75cfc93f22a3.tar.gz gcc-6f9ca45b07939ccf7f80f2e25f8f75cfc93f22a3.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/builtin-apply2.c | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-2.c | 3 |
3 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 45d271c..6efe507 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gcc.dg/builtin-apply2.c b/gcc/testsuite/gcc.dg/builtin-apply2.c index c5b841a..332f365 100644 --- a/gcc/testsuite/gcc.dg/builtin-apply2.c +++ b/gcc/testsuite/gcc.dg/builtin-apply2.c @@ -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 diff --git a/gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-2.c b/gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-2.c index 6ba5871..cbb38ef 100644 --- a/gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-2.c +++ b/gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-2.c @@ -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 |