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

db4
Doug Coleman 2010-02-03 00:04:37 -06:00
parent 9adfda095f
commit c2b377eb83
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