20030209-1.c: Disable the test if STACK_SIZE is too small.

* gcc.c-torture/execute/20030209-1.c: Disable the test if
	STACK_SIZE is too small.

From-SVN: r62766
This commit is contained in:
Kazu Hirata 2003-02-12 14:33:24 +00:00 committed by Kazu Hirata
parent 6efcd26809
commit 5c4d5a15cc
2 changed files with 19 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-02-12 Kazu Hirata <kazu@cs.umass.edu>
* gcc.c-torture/execute/20030209-1.c: Disable the test if
STACK_SIZE is too small.
2003-02-10 Eric Botcazou <ebotcazou@libertysurf.fr>
Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de>

View File

@ -1,3 +1,10 @@
#ifdef STACK_SIZE
#if STACK_SIZE >= 8*100*100
#define OK
#endif
#endif
#ifdef OK
double x[100][100];
int main ()
{
@ -9,3 +16,10 @@ int main ()
abort ();
exit (0);
}
#else
int
main ()
{
exit (0);
}
#endif