stack-usage-1.c: Adjust on i386/Darwin.

* gcc.dg/stack-usage-1.c: Adjust on i386/Darwin.
	* gcc.target/i386/stack-usage-realign.c: Skip on i386/Darwin.

From-SVN: r163768
This commit is contained in:
Eric Botcazou 2010-09-02 11:00:51 +00:00 committed by Eric Botcazou
parent 86e6a239c4
commit f7e4c09b54
3 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-09-02 Eric Botcazou <ebotcazou@adacore.com>
* gcc.dg/stack-usage-1.c: Adjust on i386/Darwin.
* gcc.target/i386/stack-usage-realign.c: Skip on i386/Darwin.
2010-09-02 Tobias Burnus <burnus@net-b.de>
PR fortran/45489

View File

@ -8,7 +8,11 @@
Then check that this is the actual stack usage in the assembly file. */
#if defined(__i386__)
# define SIZE 248
# if defined (__MACH__)
# define SIZE 232
# else
# define SIZE 248
# endif
#elif defined(__x86_64__)
# define SIZE 356
#elif defined (__sparc__)

View File

@ -1,5 +1,6 @@
/* { dg-do compile } */
/* { dg-require-effective-target ilp32 } */
/* { dg-skip-if "no stack realignment" { *-*-darwin* } { "*" } { "" } } */
/* { dg-options "-fstack-usage -msse2 -mforce-drap" } */
typedef int __attribute__((vector_size(16))) vec;