aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gutson <dgutson@codesourcery.com>2010-05-24 13:19:51 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2010-05-24 13:19:51 +0000
commite72e2da4db2f88219961c6615f0d5a673be3aaa4 (patch)
tree002d082dfeef8763da175d254a0d8e2cff0dc564
parent468194f4432a52e5767421f88104a9f1f4d4ff36 (diff)
downloadgcc-e72e2da4db2f88219961c6615f0d5a673be3aaa4.zip
gcc-e72e2da4db2f88219961c6615f0d5a673be3aaa4.tar.gz
gcc-e72e2da4db2f88219961c6615f0d5a673be3aaa4.tar.bz2
lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__ added to the preprocessor condition.
* config/arm/lib1funcs.asm (__ARM_ARCH__): __ARM_ARCH_7EM__ added to the preprocessor condition. From-SVN: r159780
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/config/arm/lib1funcs.asm3
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 80c8ff6..8313b2c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
diff --git a/gcc/config/arm/lib1funcs.asm b/gcc/config/arm/lib1funcs.asm
index 34aa23e..085e690 100644
--- a/gcc/config/arm/lib1funcs.asm
+++ b/gcc/config/arm/lib1funcs.asm
@@ -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