Skip to content

Commit

Permalink
gcc-14 -O3 complained about some possible unitialized values
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Sep 13, 2024
1 parent 776d0b6 commit 99ac62b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions simde/arm/neon/sm3.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 99ac62b

Please sign in to comment.