diff options
author | Paul Duncan <pabs@pablotron.org> | 2024-03-02 12:40:54 -0500 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2024-03-02 12:40:54 -0500 |
commit | 7dc1029c2c79f65a716ff9e44f3ab7e402d426ce (patch) | |
tree | 9b8f155867ce19bac898accdde68e3e5ebd51f27 /sha3.c | |
parent | f63eb6de0541714b50df1d971108a62d20a0540a (diff) | |
download | sha3-7dc1029c2c79f65a716ff9e44f3ab7e402d426ce.tar.bz2 sha3-7dc1029c2c79f65a716ff9e44f3ab7e402d426ce.zip |
sha3.c: fix comment
Diffstat (limited to 'sha3.c')
-rw-r--r-- | sha3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -184,7 +184,7 @@ static inline void permute(uint64_t a[static 25], const size_t num_rounds) { iota(a, 24 - num_rounds + i); } } -#endif /* __AVX512F__ */ +#endif /* !__AVX512F__ */ #ifdef __AVX512F__ #include <immintrin.h> |