From: slontis Date: Fri, 28 Mar 2025 08:35:42 +0000 (+1100) Subject: Fix cpp comment in windows build X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8860598d2f7eab14fcf63c22579d879615465c8;p=thirdparty%2Fopenssl.git Fix cpp comment in windows build Reviewed-by: Tim Hudson Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27188) --- diff --git a/crypto/armcap.c b/crypto/armcap.c index d42305b3d5e..c64a3ca0fe5 100644 --- a/crypto/armcap.c +++ b/crypto/armcap.c @@ -35,7 +35,7 @@ void OPENSSL_cpuid_setup(void) OPENSSL_armcap_P |= ARMV7_NEON; OPENSSL_armv8_rsa_neonized = 1; if (IsProcessorFeaturePresent(PF_ARM_V8_CRYPTO_INSTRUCTIONS_AVAILABLE)) { - // These are all covered by one call in Windows + /* These are all covered by one call in Windows */ OPENSSL_armcap_P |= ARMV8_AES; OPENSSL_armcap_P |= ARMV8_PMULL; OPENSSL_armcap_P |= ARMV8_SHA1;