Add more missing ngram8 cfgs (#2490)
* fix dump cfg * add missing cfg * more * taplo fmt
This commit is contained in:
parent
7a5c695401
commit
eb3dff07b6
@ -48,7 +48,13 @@ windows_alias = "unsupported"
|
||||
[tasks.test_unix]
|
||||
script_runner = "@shell"
|
||||
script = "echo done"
|
||||
dependencies = ["build_afl", "test_instr", "test_cmplog", "test_frida", "test_qemu"]
|
||||
dependencies = [
|
||||
"build_afl",
|
||||
"test_instr",
|
||||
"test_cmplog",
|
||||
"test_frida",
|
||||
"test_qemu",
|
||||
]
|
||||
|
||||
[tasks.build_libafl_fuzz]
|
||||
script_runner = "@shell"
|
||||
|
@ -1,7 +1,7 @@
|
||||
//! [`LLVM` `PcGuard`](https://clang.llvm.org/docs/SanitizerCoverage.html#tracing-pcs-with-guards) runtime for `LibAFL`.
|
||||
|
||||
#[rustversion::nightly]
|
||||
#[cfg(feature = "sancov_ngram4")]
|
||||
#[cfg(any(feature = "sancov_ngram4", feature = "sancov_ngram8"))]
|
||||
use core::simd::num::SimdUint;
|
||||
use core::{mem::align_of, slice};
|
||||
|
||||
@ -17,7 +17,7 @@ use libafl::executors::{hooks::ExecutorHook, HasObservers};
|
||||
))]
|
||||
use crate::coverage::EDGES_MAP;
|
||||
use crate::coverage::MAX_EDGES_FOUND;
|
||||
#[cfg(feature = "sancov_ngram4")]
|
||||
#[cfg(any(feature = "sancov_ngram4", feature = "sancov_ngram8"))]
|
||||
#[allow(unused)]
|
||||
use crate::EDGES_MAP_SIZE_IN_USE;
|
||||
#[cfg(feature = "pointer_maps")]
|
||||
|
Loading…
x
Reference in New Issue
Block a user