Commit de4337e8 authored by Michael R. Crusoe's avatar Michael R. Crusoe Committed by Michael R. Crusoe

gcc-14 -O3 complained about some possible unitialized values

parent 8b0937a3
......@@ -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)))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment