diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-21 15:39:02 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-21 15:39:02 +0000 |
commit | 52ec91b476b116824f1e91bca628137e486a2e44 (patch) | |
tree | 3106fd3ac81e89c3228b996bdc3635c9cd0205f4 /boehm-gc/misc.c | |
parent | 598967556e32ed07d97fe56bd41eb115fcce7b3b (diff) | |
download | gcc-52ec91b476b116824f1e91bca628137e486a2e44.tar.gz |
Alpha patch from Jeff Sturm:
* os_dep.c (GC_init_linuxalpha): New function.
* misc.c: Initialize for alpha linux.
* gc_priv.h (GC_test_and_set): Define for alpha.
* config.h: Don't assume __data_start on alpha.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27670 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/misc.c')
-rw-r--r-- | boehm-gc/misc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c index 72c87b0802c..70f583f982d 100644 --- a/boehm-gc/misc.c +++ b/boehm-gc/misc.c @@ -436,6 +436,9 @@ void GC_init_inner() # if defined(LINUX) && defined(POWERPC) GC_init_linuxppc(); # endif +# if defined(LINUX) && defined(ALPHA) + GC_init_linuxalpha(); +# endif # ifdef SOLARIS_THREADS GC_thr_init(); /* We need dirty bits in order to find live stack sections. */ |