mirror of
https://github.com/openssl/openssl.git
synced 2024-11-26 03:24:02 +08:00
crypto/whrlpool/wp_block.c: harmonize OPENSSL_ia32cap_P.
This commit is contained in:
parent
5a0876cb8c
commit
450853cd04
@ -68,9 +68,9 @@ typedef unsigned long long u64;
|
||||
CPUs this is actually faster! */
|
||||
# endif
|
||||
# define GO_FOR_MMX(ctx,inp,num) do { \
|
||||
extern unsigned long OPENSSL_ia32cap_P; \
|
||||
extern unsigned long OPENSSL_ia32cap_P[]; \
|
||||
void whirlpool_block_mmx(void *,const void *,size_t); \
|
||||
if (!(OPENSSL_ia32cap_P & (1<<23))) break; \
|
||||
if (!(OPENSSL_ia32cap_P[0] & (1<<23))) break; \
|
||||
whirlpool_block_mmx(ctx->H.c,inp,num); return; \
|
||||
} while (0)
|
||||
# endif
|
||||
|
Loading…
Reference in New Issue
Block a user