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:
parent
6efcd26809
commit
5c4d5a15cc
@ -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>
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user