summaryrefslogtreecommitdiffstats
path: root/crypto/ripemd
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-05-01 14:14:34 +0200
committerAndy Polyakov <appro@openssl.org>2016-05-02 12:35:01 +0200
commitb1a07c38540105077878ad80a6a87c96fdbc18f1 (patch)
tree06e9a22266b2cb40edb7bf4b4b2c2c7ec2fdf018 /crypto/ripemd
parent8e9f1bb99e035e30450c85595150408dc1ac3d82 (diff)
Remove obsolete defined(__INTEL__) condition.
This macro was defined by no-longer-supported __MWERKS__ compiler. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/ripemd')
-rw-r--r--crypto/ripemd/rmd_locl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ripemd/rmd_locl.h b/crypto/ripemd/rmd_locl.h
index c08178c0eb..89e2fd35d8 100644
--- a/crypto/ripemd/rmd_locl.h
+++ b/crypto/ripemd/rmd_locl.h
@@ -66,7 +66,7 @@
* <appro@fy.chalmers.se>
*/
#ifdef RMD160_ASM
-# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || defined(__INTEL__)
+# if defined(__i386) || defined(__i386__) || defined(_M_IX86)
# define ripemd160_block_data_order ripemd160_block_asm_data_order
# endif
#endif