summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_aes.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-12-18 21:39:15 +0100
committerAndy Polyakov <appro@openssl.org>2013-12-18 21:39:15 +0100
commitf0f4b8f1262faae978274048adc3019f75d472d2 (patch)
tree22371cf1772d0d9ca3727c56f1518167bd06f995 /crypto/evp/e_aes.c
parentcdd1acd788020d2c525331da1712ada778f1373c (diff)
PPC assembly pack update addendum.
Diffstat (limited to 'crypto/evp/e_aes.c')
-rw-r--r--crypto/evp/e_aes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index 4fc4b5b676..b4864fe234 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -154,7 +154,7 @@ void AES_xts_decrypt(const char *inp,char *out,size_t len,
const unsigned char iv[16]);
#endif
-#if defined(VPAES_ASM) && (defined(__powerpc__) || defined(__ppc__))
+#if defined(VPAES_ASM) && (defined(__powerpc__) || defined(__ppc__) || defined(_ARCH_PPC))
extern unsigned int OPENSSL_ppccap_P;
#define VPAES_CAPABLE (OPENSSL_ppccap_P&(1<<1))
#endif