We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12890e4 commit 353ef60Copy full SHA for 353ef60
c/blake3_dispatch.c
@@ -194,6 +194,7 @@ void blake3_compress_in_place(uint32_t cv[8],
194
195
#if defined(__wasm_simd128__)
196
blake3_compress_in_place_wasm32_simd(cv, block, block_len, counter, flags);
197
+ return;
198
#endif
199
200
blake3_compress_in_place_portable(cv, block, block_len, counter, flags);
@@ -228,6 +229,7 @@ void blake3_compress_xof(const uint32_t cv[8],
228
229
230
231
blake3_compress_xof_wasm32_simd(cv, block, block_len, counter, flags, out);
232
233
234
235
blake3_compress_xof_portable(cv, block, block_len, counter, flags, out);
@@ -308,6 +310,7 @@ void blake3_hash_many(const uint8_t *const *inputs, size_t num_inputs,
308
310
blake3_hash_many_wasm32_simd(inputs, num_inputs, blocks, key, counter,
309
311
increment_counter, flags, flags_start, flags_end,
312
out);
313
314
315
316
blake3_hash_many_portable(inputs, num_inputs, blocks, key, counter,
0 commit comments