diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-16 09:56:29 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-16 09:56:29 +0000 |
commit | b4735bfe8c6b81d66735f8d6b86ce30421711d7a (patch) | |
tree | b0baed26091cbfa806ad2b6fe669ddbe78f01d27 /boehm-gc | |
parent | bb8b7d22a6aef788cc8891a2ac7d2ac7756c143d (diff) | |
download | gcc-b4735bfe8c6b81d66735f8d6b86ce30421711d7a.tar.gz |
* config.h (__start): Declare as `int' in alpha/OSF1 case. From
David Pettersson <dapet@mai.liu.se>
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26490 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rw-r--r-- | boehm-gc/config.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 2c090961542..1866aa0a37b 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +1999-04-16 Tom Tromey <tromey@cygnus.com> + + * config.h (__start): Declare as `int' in alpha/OSF1 case. From + David Pettersson <dapet@mai.liu.se> + 1999-04-14 Tom Tromey <tromey@cygnus.com> * configure: Rebuilt. diff --git a/boehm-gc/config.h b/boehm-gc/config.h index 0ab5a1fef32..6aaf5032c78 100644 --- a/boehm-gc/config.h +++ b/boehm-gc/config.h @@ -833,7 +833,7 @@ /* Normally HEURISTIC2 is too conervative, since */ /* the text segment immediately follows the stack. */ /* Hence we give an upper pound. */ - extern __start; + extern int __start; # define HEURISTIC2_LIMIT ((ptr_t)((word)(&__start) & ~(getpagesize()-1))) # define CPP_WORDSZ 64 # define MPROTECT_VDB |