diff options
author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-28 12:12:36 +0000 |
---|---|---|
committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-28 12:12:36 +0000 |
commit | 67c4d77e08d28003b324a402ecf1348f94982ffb (patch) | |
tree | 61e3e17685c415381335ac0b473d537701e655ea /boehm-gc | |
parent | d13886be006138cdcd31629b5c48ac7caba3eacf (diff) | |
download | gcc-67c4d77e08d28003b324a402ecf1348f94982ffb.tar.gz |
* include/private/gcconfig.h: Don't check for __XSCALE__. Instead
check for __arm__ or __thumb__.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57610 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 1e39307bfa7..2114ef3d98e 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 432250cf4f6..00ff9ef6a87 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 |