Commit 5c4d5a15 by Kazu Hirata Committed by Kazu Hirata

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
parent 6efcd268
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>
......
#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
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