]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__
authornathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 May 2010 13:19:51 +0000 (13:19 +0000)
committernathan <nathan@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 24 May 2010 13:19:51 +0000 (13:19 +0000)
added to the preprocessor condition.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159780 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/arm/lib1funcs.asm

index 80c8ff63b7347c397644c89738fe388f26b1d88e..8313b2ceb6608ad64a6bc9b32624b6e4bfca1e2e 100644 (file)
@@ -1,3 +1,8 @@
+2010-05-24  Daniel Gutson  <dgutson@codesourcery.com>
+
+       * config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__
+       added to the preprocessor condition.
+
 2010-05-24  Paul Brook  <paul@codesourcery.com>
 
        * gengtype-lex.l: Add HARD_REG_SET.
index 34aa23e6979c6b11b0846cb932c746f136ee4399..085e69068ad8cd4f7994b608be1610377b5ab3ae 100644 (file)
@@ -104,7 +104,8 @@ see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
 #endif
 
 #if defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) \
-       || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__)
+       || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) \
+       || defined(__ARM_ARCH_7EM__)
 # define __ARM_ARCH__ 7
 #endif