diff options
Diffstat (limited to 'boehm-gc/tests')
-rw-r--r-- | boehm-gc/tests/test.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/boehm-gc/tests/test.c b/boehm-gc/tests/test.c index f443173..1180ab1 100644 --- a/boehm-gc/tests/test.c +++ b/boehm-gc/tests/test.c @@ -624,7 +624,12 @@ void reverse_test() /* OSF has limited stack space by default, and large frames. */ # define BIG 200 # else -# define BIG 4500 +# if defined(__MACH__) && defined(__ppc64__) + /* Small stack and largish frames. */ +# define BIG 2500 +# else +# define BIG 4500 +# endif # endif # endif # endif |