Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2010-02-10 01:52:21 +0300
committerJeff Johnston <jjohnstn@redhat.com>2010-02-10 01:52:21 +0300
commit5880fbf78343d90c3f8f3ae9dc9e1b3481e1b19b (patch)
treeaf942b30bf0066392d89902f0ab672f80840c0c7 /newlib/libc/machine
parent23a4a3517f4c32b8a3672fc7f2ce86e90c1cc369 (diff)
2010-02-09 Daniel Gutson <dgutson@codesourcery.com>
* libc/machine/arm/arm_asm.h (_ISA_THUMB_2): __ARM_ARCH_7EM__ added to the preprocessor condition.
Diffstat (limited to 'newlib/libc/machine')
-rw-r--r--newlib/libc/machine/arm/arm_asm.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/machine/arm/arm_asm.h b/newlib/libc/machine/arm/arm_asm.h
index f8104ec3c..2e0b1dd80 100644
--- a/newlib/libc/machine/arm/arm_asm.h
+++ b/newlib/libc/machine/arm/arm_asm.h
@@ -51,7 +51,8 @@
#define _ISA_ARM_4T
#endif
-#if defined (__ARM_ARCH_7M__) || defined (__ARM_ARCH_7__)
+#if defined (__ARM_ARCH_7M__) || defined (__ARM_ARCH_7__) || \
+ defined (__ARM_ARCH_7EM__)
#define _ISA_THUMB_2
#endif