The branch master has been updated via 2bdec3b037264540014120a02217fc67bf355f11 (commit) from da51566b256e0c0536d5b986e676863b0526bf5e (commit)
- Log ----------------------------------------------------------------- commit 2bdec3b037264540014120a02217fc67bf355f11 Author: Xiaofei Bai <xiaofei....@arm.com> Date: Tue May 11 09:37:22 2021 +0000 crypto/arm_arch.h: add a variable declaration Add this variable declaration to prevent "-Werror,-Wmissing-variable-declarations" error from compiler. This error currently only happens on clang. Reviewed-by: Tomas Mraz <to...@openssl.org> Reviewed-by: Paul Dale <pa...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15240) ----------------------------------------------------------------------- Summary of changes: crypto/arm_arch.h | 1 + 1 file changed, 1 insertion(+) diff --git a/crypto/arm_arch.h b/crypto/arm_arch.h index d98154bddb..9de35afcfd 100644 --- a/crypto/arm_arch.h +++ b/crypto/arm_arch.h @@ -72,6 +72,7 @@ # ifndef __ASSEMBLER__ extern unsigned int OPENSSL_armcap_P; extern unsigned int OPENSSL_arm_midr; +extern unsigned int OPENSSL_armv8_rsa_neonized; # endif # define ARMV7_NEON (1<<0)