mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 04:18:06 +00:00
fixes lots of llvm warnings
This commit is contained in:
@ -379,7 +379,9 @@ static void edit_params(u32 argc, char **argv, char **envp) {
|
||||
|
||||
if (instrument_mode == INSTRUMENT_PCGUARD) {
|
||||
|
||||
#if LLVM_VERSION_MAJOR >= 4
|
||||
#if LLVM_VERSION_MAJOR > 4 || \
|
||||
(LLVM_VERSION_MAJOR == 4 && \
|
||||
(LLVM_VERSION_MINOR > 0 || LLVM_VERSION_PATCH >= 1))
|
||||
cc_params[cc_par_cnt++] =
|
||||
"-fsanitize-coverage=trace-pc-guard"; // edge coverage by default
|
||||
#else
|
||||
|
Reference in New Issue
Block a user