use correct function names for AVX512, fix build failure

This commit is contained in:
Konstantinos Margaritis
2021-02-15 13:52:28 +02:00
committed by Konstantinos Margaritis
parent 73bab6346d
commit 1c1bca4f98
13 changed files with 48 additions and 48 deletions

View File

@@ -320,7 +320,7 @@ char SHENG32_IMPL(u8 *state, NfaCallback cb, void *ctxt,
return MO_CONTINUE_MATCHING;
}
m512 cur_state = set64x8(*state);
m512 cur_state = set1_64x8(*state);
const m512 *masks = s->succ_masks;
while (likely(end - cur_buf >= 4)) {
@@ -542,7 +542,7 @@ char SHENG64_IMPL(u8 *state, NfaCallback cb, void *ctxt,
return MO_CONTINUE_MATCHING;
}
m512 cur_state = set64x8(*state);
m512 cur_state = set1_64x8(*state);
const m512 *masks = s->succ_masks;
while (likely(end - cur_buf >= 4)) {