From 99ac62baab846bf26908e8ab22ba4a9036b90a9c Mon Sep 17 00:00:00 2001 From: "Michael R. Crusoe" Date: Thu, 12 Sep 2024 19:28:40 +0200 Subject: [PATCH] gcc-14 -O3 complained about some possible unitialized values --- simde/arm/neon/sm3.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/simde/arm/neon/sm3.h b/simde/arm/neon/sm3.h index 64f02c9d8..67f8b1446 100644 --- a/simde/arm/neon/sm3.h +++ b/simde/arm/neon/sm3.h @@ -31,6 +31,10 @@ HEDLEY_DIAGNOSTIC_PUSH SIMDE_DISABLE_UNWANTED_DIAGNOSTICS +#if HEDLEY_GCC_VERSION_CHECK(14,0,0) + SIMDE_DIAGNOSTIC_DISABLE_MAYBE_UNINITIAZILED_ +#endif + SIMDE_BEGIN_DECLS_ #define ROR32(operand, shift) (((operand) >> (shift)) | ((operand) << (32-shift)))