diff options
author | Paul Duncan <pabs@pablotron.org> | 2024-05-05 10:41:41 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2024-05-05 10:41:41 -0400 |
commit | c8536f5094f58db837e5d30f5c24aa1aaabe8eef (patch) | |
tree | 84758f96855d4f08c8a6bcc299bb0a4edd770593 /sha3.c | |
parent | a6cea223518eb5e5e8575d32576db8b66c26ed3e (diff) | |
download | sha3-c8536f5094f58db837e5d30f5c24aa1aaabe8eef.tar.bz2 sha3-c8536f5094f58db837e5d30f5c24aa1aaabe8eef.zip |
sha3.c: s/avx512/neon/ in neon test comments
Diffstat (limited to 'sha3.c')
-rw-r--r-- | sha3.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2533,7 +2533,7 @@ static void test_permute_neon(void) { uint64_t got[25] = { 0 }; memcpy(got, PERMUTE_TESTS[i].a, sizeof(got)); - permute_n_neon(got, 24); // call permute_n_avx512() directly + permute_n_neon(got, 24); // call permute_n_neon() directly if (memcmp(got, PERMUTE_TESTS[i].exp, exp_len)) { fail_test(__func__, "", (uint8_t*) got, exp_len, (uint8_t*) PERMUTE_TESTS[i].exp, exp_len); @@ -2589,7 +2589,7 @@ static void test_permute12_neon(void) { uint64_t got[25] = { 0 }; memcpy(got, PERMUTE12_TESTS[i].a, sizeof(got)); - permute_n_neon(got, 12); // call permute_n_avx512() directly + permute_n_neon(got, 12); // call permute_n_neon() directly if (memcmp(got, PERMUTE12_TESTS[i].exp, exp_len)) { fail_test(__func__, "", (uint8_t*) got, exp_len, (uint8_t*) PERMUTE12_TESTS[i].exp, exp_len); |