diff options
Diffstat (limited to 'openssl/trunk/crypto/bn/asm/x86_64-gcc.c')
-rw-r--r-- | openssl/trunk/crypto/bn/asm/x86_64-gcc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openssl/trunk/crypto/bn/asm/x86_64-gcc.c b/openssl/trunk/crypto/bn/asm/x86_64-gcc.c index 73783442..f13f52dd 100644 --- a/openssl/trunk/crypto/bn/asm/x86_64-gcc.c +++ b/openssl/trunk/crypto/bn/asm/x86_64-gcc.c @@ -1,3 +1,6 @@ +#ifdef __SUNPRO_C +# include "../bn_asm.c" /* kind of dirty hack for Sun Studio */ +#else /* * x86_64 BIGNUM accelerator version 0.1, December 2002. * @@ -591,3 +594,4 @@ void bn_sqr_comba4(BN_ULONG *r, BN_ULONG *a) r[6]=c1; r[7]=c2; } +#endif |