diff options
author | van Hauser <vh@thc.org> | 2022-09-17 11:58:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-17 11:58:41 +0200 |
commit | badd9694d25ac5320b5f6d4e2ee182f59649a821 (patch) | |
tree | 29514cbd5a4fdfc8e934f79d9da45bfcfab4d1df /src/afl-cc.c | |
parent | 2f0cc088b5e8876382c586422b718d3b7ee894f6 (diff) | |
parent | 0623a73a5cb8a0c2cff32413df9f4c5c69b8e339 (diff) | |
download | afl++-badd9694d25ac5320b5f6d4e2ee182f59649a821.tar.gz |
Merge pull request #1525 from AFLplusplus/dev
push to stable
Diffstat (limited to 'src/afl-cc.c')
-rw-r--r-- | src/afl-cc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c index 5e7a9c9e..53fba1e7 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -668,8 +668,8 @@ static void edit_params(u32 argc, char **argv, char **envp) { #if defined(AFL_CLANG_LDPATH) && LLVM_MAJOR >= 15 // The NewPM implementation only works fully since LLVM 15. - cc_params[cc_par_cnt++] = - alloc_printf("-Wl,--load-pass-plugin=%s/SanitizerCoverageLTO.so", obj_path); + cc_params[cc_par_cnt++] = alloc_printf( + "-Wl,--load-pass-plugin=%s/SanitizerCoverageLTO.so", obj_path); #elif defined(AFL_CLANG_LDPATH) && LLVM_MAJOR >= 13 cc_params[cc_par_cnt++] = "-Wl,--lto-legacy-pass-manager"; cc_params[cc_par_cnt++] = |