diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-29 01:17:03 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-29 01:17:03 +0000 |
commit | daac33087f0c0e477b902326fcc532899610cb51 (patch) | |
tree | c7f40026bc5123bd2d484dabd9298b066b2ed7fe /boehm-gc | |
parent | 777e249ae8010727efffb45959cbdf7a2eed5c1b (diff) | |
download | gcc-daac33087f0c0e477b902326fcc532899610cb51.tar.gz |
* gcconfig.h (DATASTART): Add missing extern declaration
for data_start on powerpc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31677 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rw-r--r-- | boehm-gc/gcconfig.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 5e39dd05778..180f111067f 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,8 @@ +Fri Jan 28 17:13:20 2000 Anthony Green <green@cygnus.com> + + * gcconfig.h (DATASTART): Add missing extern declaration + for data_start on powerpc. + 1999-12-22 Bryce McKinlay <bryce@albatross.co.nz> * linux_threads.c: Don't block SIGINT, SIGQUIT, SIGTERM in the diff --git a/boehm-gc/gcconfig.h b/boehm-gc/gcconfig.h index 9451aab3770..25178d095ec 100644 --- a/boehm-gc/gcconfig.h +++ b/boehm-gc/gcconfig.h @@ -532,6 +532,7 @@ # undef STACK_GRAN # define STACK_GRAN 0x10000000 /* Stack usually starts at 0x80000000 */ + extern int data_start; # define DATASTART (&data_start) extern int _end; # define DATAEND (&_end) |