Fix build when BSAES_ASM is defined but VPAES_ASM is not
Reviewed-by: Andy Polyakov <appro@openssl.org>
This commit is contained in:
parent
15735e4f0e
commit
da92be4d68
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ extern unsigned int OPENSSL_ia32cap_P[];
|
|||
#define VPAES_CAPABLE (OPENSSL_ia32cap_P[1]&(1<<(41-32)))
|
||||
#endif
|
||||
#ifdef BSAES_ASM
|
||||
#define BSAES_CAPABLE VPAES_CAPABLE
|
||||
#define BSAES_CAPABLE (OPENSSL_ia32cap_P[1]&(1<<(41-32)))
|
||||
#endif
|
||||
/*
|
||||
* AES-NI section
|
||||
|
|
Loading…
Reference in a new issue