20030209-1.c: Enable the test if STACK_SIZE is not defined.
authorKazu Hirata <kazu@cs.umass.edu>
Tue, 18 Feb 2003 17:48:54 +0000 (17:48 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Tue, 18 Feb 2003 17:48:54 +0000 (17:48 +0000)
* gcc.c-torture/execute/20030209-1.c: Enable the test if
STACK_SIZE is not defined.

From-SVN: r63042

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20030209-1.c

index bf170897512f4faed6919fe2eb45c920b9180bc2..fbf1360915ce379b9fb709fd3aa8e303d47da733 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-18  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * gcc.c-torture/execute/20030209-1.c: Enable the test if
+       STACK_SIZE is not defined.
+
 2003-02-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
 
        PR c++/9457
index 9a68ef4a800b0e85f83604fae8be71c4aeb09378..5845d67b3ca1cc681c806d38093094359cdfdb64 100644 (file)
@@ -1,10 +1,10 @@
 #ifdef STACK_SIZE
-#if STACK_SIZE >= 8*100*100
-#define OK
+#if STACK_SIZE < 8*100*100
+#define SKIP
 #endif
 #endif
 
-#ifdef OK
+#ifndef SKIP
 double x[100][100];
 int main ()
 {