aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc
diff options
context:
space:
mode:
authorRichard Earnshaw <rearnsha@arm.com>2002-09-28 12:12:36 +0000
committerRichard Earnshaw <rearnsha@gcc.gnu.org>2002-09-28 12:12:36 +0000
commit82cfabc1a92dc358b6c2356896d040444f9390c4 (patch)
tree61e3e17685c415381335ac0b473d537701e655ea /boehm-gc
parent28165e22cd970f0269c27f31a30c166c9732cfea (diff)
downloadgcc-82cfabc1a92dc358b6c2356896d040444f9390c4.zip
gcc-82cfabc1a92dc358b6c2356896d040444f9390c4.tar.gz
gcc-82cfabc1a92dc358b6c2356896d040444f9390c4.tar.bz2
gcconfig.h: Don't check for __XSCALE__.
* include/private/gcconfig.h: Don't check for __XSCALE__. Instead check for __arm__ or __thumb__. From-SVN: r57610
Diffstat (limited to 'boehm-gc')
-rw-r--r--boehm-gc/ChangeLog5
-rw-r--r--boehm-gc/include/private/gcconfig.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index 1e39307..2114ef3 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,8 @@
+2002-09-28 Richard Earnshaw <rearnsha@arm.com>
+
+ * include/private/gcconfig.h: Don't check for __XSCALE__. Instead
+ check for __arm__ or __thumb__.
+
2002-09-27 Ulrich Weigand <uweigand@de.ibm.com>
* include/private/gcconfig: Add machine type S390. Add s390x support.
diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h
index 432250c..00ff9ef 100644
--- a/boehm-gc/include/private/gcconfig.h
+++ b/boehm-gc/include/private/gcconfig.h
@@ -44,7 +44,7 @@
# endif
/* Determine the machine type: */
-# if defined(__XSCALE__)
+# if defined(__arm__) || defined(__thumb__)
# define ARM32
# if !defined(LINUX)
# define NOSYS