diff options
author | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-21 00:15:52 +0000 |
---|---|---|
committer | green <green@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-21 00:15:52 +0000 |
commit | c36912088ae18f49a65bb5fda809eb3f4a53b8cc (patch) | |
tree | 9045a6fb692471ea8a75b8a363fe87860b049149 /boehm-gc | |
parent | 460ab0f54664bc49f89fc33ae03e1ce661166811 (diff) | |
download | gcc-c36912088ae18f49a65bb5fda809eb3f4a53b8cc.tar.gz |
Fix arm-elf support.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71613 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 5 | ||||
-rw-r--r-- | boehm-gc/include/private/gcconfig.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index f0918f67603..9a4df519a37 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 29dab213815..45386d78570 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 |