summaryrefslogtreecommitdiffstats
path: root/crypto/ripemd
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-10-25 15:55:06 +0000
committerAndy Polyakov <appro@openssl.org>2005-10-25 15:55:06 +0000
commit6c1fc273f3b470ca4aff313ea9abaaab4e41f7b8 (patch)
tree107f916cba09ef2c61efad98c23b9e77df50a518 /crypto/ripemd
parentaa8b03b415d20c0863f44c211486f881c6689383 (diff)
Eliminate false preprocessor dependencies introduced with VOS support.
Diffstat (limited to 'crypto/ripemd')
-rw-r--r--crypto/ripemd/rmd_locl.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/crypto/ripemd/rmd_locl.h b/crypto/ripemd/rmd_locl.h
index b52d786165..bb66dfa475 100644
--- a/crypto/ripemd/rmd_locl.h
+++ b/crypto/ripemd/rmd_locl.h
@@ -72,16 +72,15 @@
*/
#ifdef RMD160_ASM
# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__)
-# if !defined(B_ENDIAN)
-# define ripemd160_block_host_order ripemd160_block_asm_host_order
-# endif
+# define ripemd160_block_host_order ripemd160_block_asm_host_order
# endif
#endif
void ripemd160_block_host_order (RIPEMD160_CTX *c, const void *p,size_t num);
void ripemd160_block_data_order (RIPEMD160_CTX *c, const void *p,size_t num);
-#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__)
+#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__) || \
+ defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
# if !defined(B_ENDIAN)
# define ripemd160_block_data_order ripemd160_block_host_order
# endif