Change benchmark.recursive to make less recursions to avoid overflowing the callstack on win64

Doug Coleman 2010-02-03 00:04:37 -06:00
parent 82f2e67914
commit 5c90821e1d
1 changed files with 1 additions and 1 deletions

View File

@ -32,6 +32,6 @@ IN: benchmark.recursive
HINTS: recursive fixnum ;
: recursive-main ( -- ) 11 recursive ;
: recursive-main ( -- ) 10 recursive ;
MAIN: recursive-main