From: Kazu Hirata Date: Tue, 18 Feb 2003 17:48:54 +0000 (+0000) Subject: 20030209-1.c: Enable the test if STACK_SIZE is not defined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc102c4bd54702a5503c4f1476b8133bebed4fb1;p=gcc.git 20030209-1.c: Enable the test if STACK_SIZE is not defined. * gcc.c-torture/execute/20030209-1.c: Enable the test if STACK_SIZE is not defined. From-SVN: r63042 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bf170897512..fbf1360915c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2003-02-18 Kazu Hirata + + * gcc.c-torture/execute/20030209-1.c: Enable the test if + STACK_SIZE is not defined. + 2003-02-17 Kriang Lerdsuwanakij PR c++/9457 diff --git a/gcc/testsuite/gcc.c-torture/execute/20030209-1.c b/gcc/testsuite/gcc.c-torture/execute/20030209-1.c index 9a68ef4a800..5845d67b3ca 100644 --- a/gcc/testsuite/gcc.c-torture/execute/20030209-1.c +++ b/gcc/testsuite/gcc.c-torture/execute/20030209-1.c @@ -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 () {