aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/misc.c
diff options
context:
space:
mode:
authorAnthony Green <green@cygnus.com>1999-12-12 18:06:08 +0000
committerAnthony Green <green@gcc.gnu.org>1999-12-12 18:06:08 +0000
commitd0017c11ff277f6e7aad314240da8f32c2d17069 (patch)
tree09d6353b0f67a8764ec5ac0e7fac500cf1d5fcb1 /boehm-gc/misc.c
parent3e7d8ef1a6cd485144c86284728ecf0ffb1da727 (diff)
downloadgcc-d0017c11ff277f6e7aad314240da8f32c2d17069.zip
gcc-d0017c11ff277f6e7aad314240da8f32c2d17069.tar.gz
gcc-d0017c11ff277f6e7aad314240da8f32c2d17069.tar.bz2
gcconfig.h (DATASTART): Define as (&data_start) for PowerPC Linux.
* gcconfig.h (DATASTART): Define as (&data_start) for PowerPC Linux. (DYNAMIC_LOADING): Define for PowerPC Linux. * os_dep.c: Remove some special cases for PowerPC Linux. * misc.c (GC_init_inner): Don't call GC_init_linux_data_start for PowerPC Linux. From-SVN: r30873
Diffstat (limited to 'boehm-gc/misc.c')
-rw-r--r--boehm-gc/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c
index 32288a9..9f20910 100644
--- a/boehm-gc/misc.c
+++ b/boehm-gc/misc.c
@@ -444,7 +444,7 @@ void GC_init_inner()
GC_init_win32();
# endif
# if defined(LINUX) && \
- (defined(POWERPC) || defined(ALPHA) || defined(SPARC) || defined(IA64))
+ (defined(ALPHA) || defined(SPARC) || defined(IA64))
GC_init_linux_data_start();
# endif
# ifdef SOLARIS_THREADS