* gcc.c-torture/execute/20011008-3.c: Cap VLEN with STACK_SIZE too.
authorEric Botcazou <ebotcazou@adacore.com>
Tue, 26 Mar 2013 22:32:12 +0000 (22:32 +0000)
committerEric Botcazou <ebotcazou@gcc.gnu.org>
Tue, 26 Mar 2013 22:32:12 +0000 (22:32 +0000)
From-SVN: r197125

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/20011008-3.c

index 1f53a31..5b0544d 100644 (file)
@@ -1,3 +1,7 @@
+2013-03-26  Eric Botcazou  <ebotcazou@adacore.com>
+
+       * gcc.c-torture/execute/20011008-3.c: Cap VLEN with STACK_SIZE too.
+
 2013-03-26  Paolo Carlini  <paolo.carlini@oracle.com>
 
        PR c++/55951
index 6d2a18f..3244b0a 100644 (file)
@@ -81,10 +81,10 @@ __db_txnlist_lsnadd(int val, DB_TXNLIST *elp, DB_LSN *lsnp, u_int32_t flags)
    return val;
 }
 
-#ifndef STACK_SIZE
-#define        VLEN    1235
-#else
+#if defined (STACK_SIZE) && STACK_SIZE < 12350
 #define VLEN (STACK_SIZE/10)
+#else
+#define VLEN 1235
 #endif
 
 int main (void)