aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc
diff options
context:
space:
mode:
authorAnthony Green <green@redhat.com>2003-09-21 00:15:52 +0000
committerAnthony Green <green@gcc.gnu.org>2003-09-21 00:15:52 +0000
commit0722cb666cc4afa628399c3b56645a3bbae61c8d (patch)
tree9045a6fb692471ea8a75b8a363fe87860b049149 /boehm-gc
parenta8cc9af35f01b8ce4347e31269ece9387cb31fea (diff)
downloadgcc-0722cb666cc4afa628399c3b56645a3bbae61c8d.zip
gcc-0722cb666cc4afa628399c3b56645a3bbae61c8d.tar.gz
gcc-0722cb666cc4afa628399c3b56645a3bbae61c8d.tar.bz2
Fix arm-elf support.
From-SVN: r71613
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 f0918f6..9a4df51 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,8 @@
+2003-09-20 <green@redhat.com>
+
+ * include/private/gcconfig.h: Don't check for __XSCALE__. Instead
+ check for __arm__ or __thumb__.
+
2003-09-09 Alan Modra <amodra@bigpond.net.au>
* configure: Regenerate.
diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h
index 29dab21..45386d7 100644
--- a/boehm-gc/include/private/gcconfig.h
+++ b/boehm-gc/include/private/gcconfig.h
@@ -60,7 +60,7 @@
# endif
/* Determine the machine type: */
-# if defined(__XSCALE__)
+# if defined(__arm__) || defined(__thumb__)
# define ARM32
# if !defined(LINUX)
# define NOSYS