diff options
author | Anthony Green <green@cygnus.com> | 2000-01-29 01:17:03 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2000-01-29 01:17:03 +0000 |
commit | 72af8e4e63da81d09ed612c5024c3aadfe1cd077 (patch) | |
tree | c7f40026bc5123bd2d484dabd9298b066b2ed7fe /boehm-gc | |
parent | 19d3c25c9a4da9526a2012b47d14bc731fd0422e (diff) | |
download | gcc-72af8e4e63da81d09ed612c5024c3aadfe1cd077.zip gcc-72af8e4e63da81d09ed612c5024c3aadfe1cd077.tar.gz gcc-72af8e4e63da81d09ed612c5024c3aadfe1cd077.tar.bz2 |
gcconfig.h (DATASTART): Add missing extern declaration for data_start on powerpc.
* gcconfig.h (DATASTART): Add missing extern declaration
for data_start on powerpc.
From-SVN: r31677
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 5e39dd0..180f111 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 9451aab..25178d0 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) |