aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ppccap.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2013-11-27 22:50:00 +0100
committerAndy Polyakov <appro@openssl.org>2013-11-27 22:50:00 +0100
commitb9e87d07cb60240ac7a602550df64b66ee998789 (patch)
tree21a4df047afb93b23bb87590ee5ac0f079c567b6 /crypto/ppccap.c
parent07f3e4f3f902040a35b7fc9e207899c33bff0637 (diff)
downloadopenssl-b9e87d07cb60240ac7a602550df64b66ee998789.tar.gz
ppc64-mont.pl: eliminate dependency on GPRs' upper halves.
Diffstat (limited to 'crypto/ppccap.c')
-rw-r--r--crypto/ppccap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ppccap.c b/crypto/ppccap.c
index 361f2dde73..d78bfbcdbb 100644
--- a/crypto/ppccap.c
+++ b/crypto/ppccap.c
@@ -25,7 +25,7 @@ int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_U
if (sizeof(size_t)==4)
{
-#if (defined(__APPLE__) && defined(__MACH__))
+#if 1 || (defined(__APPLE__) && defined(__MACH__))
if (num>=8 && (num&3)==0 && (OPENSSL_ppccap_P&PPC_FPU64))
return bn_mul_mont_fpu64(rp,ap,bp,np,n0,num);
#else