[Python-checkins] r78969 - python/trunk/Modules/_ctypes/libffi/src/arm/sysv.S

matthias.klose python-checkins at python.org
Mon Mar 15 01:36:18 CET 2010


Author: matthias.klose
Date: Mon Mar 15 01:36:18 2010
New Revision: 78969

Log:
Backport from the libffi trunk:

2010-02-15  Matthias Klose  <doko at ubuntu.com>

        * src/arm/sysv.S (__ARM_ARCH__): Define for processor
        __ARM_ARCH_7EM__.


Modified:
   python/trunk/Modules/_ctypes/libffi/src/arm/sysv.S

Modified: python/trunk/Modules/_ctypes/libffi/src/arm/sysv.S
==============================================================================
--- python/trunk/Modules/_ctypes/libffi/src/arm/sysv.S	(original)
+++ python/trunk/Modules/_ctypes/libffi/src/arm/sysv.S	Mon Mar 15 01:36:18 2010
@@ -74,7 +74,8 @@
 #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__)
 # undef __ARM_ARCH__
 # define __ARM_ARCH__ 7
 #endif


More information about the Python-checkins mailing list