From b8675a7f7bc07eb9933f5f9277aff184b3ad572c Mon Sep 17 00:00:00 2001 From: Paul Dreik Date: Sun, 26 Jan 2025 05:36:33 +0100 Subject: [PATCH] fix fuzzing when running on icelake (#2327) --- fuzz/fuzz_implementations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuzz/fuzz_implementations.cpp b/fuzz/fuzz_implementations.cpp index 120d0e6ad..b4838cbba 100644 --- a/fuzz/fuzz_implementations.cpp +++ b/fuzz/fuzz_implementations.cpp @@ -72,7 +72,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { // make this dynamic, so it works regardless of how it was compiled // or what hardware it runs on - constexpr std::size_t Nimplementations_max=3; + constexpr std::size_t Nimplementations_max=4; const std::size_t Nimplementations = supported_implementations.size(); if(Nimplementations>Nimplementations_max) {