diff options
author | Andy Polyakov <appro@openssl.org> | 2016-05-01 14:14:34 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2016-05-02 12:35:01 +0200 |
commit | b1a07c38540105077878ad80a6a87c96fdbc18f1 (patch) | |
tree | 06e9a22266b2cb40edb7bf4b4b2c2c7ec2fdf018 /crypto/ripemd | |
parent | chacha/asm/chacha-x86.pl: make it compile on legacy systems. (diff) | |
download | openssl-b1a07c38540105077878ad80a6a87c96fdbc18f1.tar.xz openssl-b1a07c38540105077878ad80a6a87c96fdbc18f1.zip |
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.h | 2 |
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 |