diff options
author | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-10 10:09:10 +0000 |
---|---|---|
committer | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-12-10 10:09:10 +0000 |
commit | 02e191ba495b4ec87aeb961ff9afdb666287104a (patch) | |
tree | f55901893a1534081c19939aa6fcd70e3569958e /boehm-gc/tests | |
parent | e16610d055313c83e07ed3c61128785bdfb870ce (diff) | |
download | gcc-02e191ba495b4ec87aeb961ff9afdb666287104a.tar.gz |
update boehm-gc for powerpc m64 darwin.
boehm-gc:
* powerpc_darwin_mach_dep.s: Update for m64. Add eh frames.
Do not build or use the picsymbol stub for Darwin >= 9.
* tests/test.c (reverse_test): Modify count for ppc64-darwin.
* pthread_support.c (GC_get_thread_stack_base): Correct a debug
statement.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167681 138bc75d-0d04-0410-961f-82ee72b054a4
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 f4431739382..1180ab152ad 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 |