summaryrefslogtreecommitdiffstats
path: root/crypto/bn
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2015-12-06 22:02:39 +0100
committerAndy Polyakov <appro@openssl.org>2015-12-07 12:06:06 +0100
commita285992763f3961f69a8d86bf7dfff020a08cef9 (patch)
treed5a7430b9a159f3c1bd933f87c67225e29afb686 /crypto/bn
parentd231a4010bfa4032dc24a74c6cd3073e252864c4 (diff)
ARMv4 assembly pack: allow Thumb2 even in iOS build,
and engage it in most modules. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn')
-rw-r--r--crypto/bn/asm/armv4-gf2m.pl2
-rw-r--r--crypto/bn/asm/armv4-mont.pl2
2 files changed, 2 insertions, 2 deletions
diff --git a/crypto/bn/asm/armv4-gf2m.pl b/crypto/bn/asm/armv4-gf2m.pl
index 227581e10c..22aa4830f8 100644
--- a/crypto/bn/asm/armv4-gf2m.pl
+++ b/crypto/bn/asm/armv4-gf2m.pl
@@ -51,7 +51,7 @@ $code=<<___;
#include "arm_arch.h"
.text
-#if defined(__thumb2__) && !defined(__APPLE__)
+#if defined(__thumb2__)
.syntax unified
.thumb
#else
diff --git a/crypto/bn/asm/armv4-mont.pl b/crypto/bn/asm/armv4-mont.pl
index 48e523013f..7017ad5f20 100644
--- a/crypto/bn/asm/armv4-mont.pl
+++ b/crypto/bn/asm/armv4-mont.pl
@@ -91,7 +91,7 @@ $code=<<___;
#include "arm_arch.h"
.text
-#if defined(__thumb2__) && !defined(__APPLE__)
+#if defined(__thumb2__)
.syntax unified
.thumb
#else