From: Xiaofei Bai Date: Tue, 11 May 2021 09:37:22 +0000 (+0000) Subject: crypto/arm_arch.h: add a variable declaration X-Git-Tag: openssl-3.0.0-alpha17~125 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2bdec3b037264540014120a02217fc67bf355f11;p=thirdparty%2Fopenssl.git 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 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15240) --- diff --git a/crypto/arm_arch.h b/crypto/arm_arch.h index d98154bddb7..9de35afcfdd 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)