From: Bob Beck Date: Thu, 18 Jun 2026 17:28:28 +0000 (-0600) Subject: Drop missed unneded GNUC>=2 check X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=b72ee09a45109faec2e46865d9ef648525ccec78;p=thirdparty%2Fopenssl.git Drop missed unneded GNUC>=2 check Spotted by idrassi on review. thanks! Reviewed-by: Milan Broz Reviewed-by: Tomas Mraz Reviewed-by: Neil Horman MergeDate: Fri Jul 10 11:47:21 2026 (Merged from https://github.com/openssl/openssl/pull/31677) --- diff --git a/include/crypto/md32_common.inc b/include/crypto/md32_common.inc index 06293681b4d..3dea481c567 100644 --- a/include/crypto/md32_common.inc +++ b/include/crypto/md32_common.inc @@ -104,7 +104,7 @@ #define ROTATE(a, n) (((a) << (n)) | (((a) & 0xffffffff) >> (32 - (n)))) #ifndef PEDANTIC -#if defined(__GNUC__) && __GNUC__ >= 2 && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) +#if defined(__GNUC__) && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM) #if defined(__riscv_zbb) || defined(__riscv_zbkb) #if __riscv_xlen == 64 #undef ROTATE