diff options
author | Andy Polyakov <appro@openssl.org> | 2014-11-07 22:48:22 +0100 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2015-01-04 23:45:08 +0100 |
commit | c1669e1c205dc8e695fb0c10a655f434e758b9f7 (patch) | |
tree | 08f1005b02e6ae66188fee2a8328c44bd8fdc902 /crypto/evp/e_aes.c | |
parent | ecp_nistz256-x86_64.pl: fix occasional failures. (diff) | |
download | openssl-c1669e1c205dc8e695fb0c10a655f434e758b9f7.tar.xz openssl-c1669e1c205dc8e695fb0c10a655f434e758b9f7.zip |
Remove inconsistency in ARM support.
This facilitates "universal" builds, ones that target multiple
architectures, e.g. ARMv5 through ARMv7. See commentary in
Configure for details.
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'crypto/evp/e_aes.c')
-rw-r--r-- | crypto/evp/e_aes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c index ba3d43b9fa..ddd856ec71 100644 --- a/crypto/evp/e_aes.c +++ b/crypto/evp/e_aes.c @@ -1036,7 +1036,7 @@ const EVP_CIPHER *EVP_aes_##keylen##_##mode(void) \ #if defined(OPENSSL_CPUID_OBJ) && (defined(__arm__) || defined(__arm) || defined(__aarch64__)) #include "arm_arch.h" -#if __ARM_ARCH__>=7 +#if __ARM_MAX_ARCH__>=7 # if defined(BSAES_ASM) # define BSAES_CAPABLE (OPENSSL_armcap_P & ARMV7_NEON) # endif |