about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2022-02-22 10:54:51 +0100
committerRaphael Isemann <teemperor@gmail.com>2022-02-22 11:13:00 +0100
commit05119990b6075aaf8f16a385a763651f68b8b1ef (patch)
tree20871fe51ae37869e5b400e07b9832e465904124 /src
parenta5943dc782d1a6047aaa8f455ab37e4a31369311 (diff)
downloadafl++-05119990b6075aaf8f16a385a763651f68b8b1ef.tar.gz
LLVM 14 fixes
Diffstat (limited to 'src')
-rw-r--r--src/afl-cc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c
index ed57ca1e..bacd9de9 100644
--- a/src/afl-cc.c
+++ b/src/afl-cc.c
@@ -549,8 +549,8 @@ static void edit_params(u32 argc, char **argv, char **envp) {
     }
 
 #if LLVM_MAJOR >= 13
-    // fuck you llvm 13
-    cc_params[cc_par_cnt++] = "-fno-experimental-new-pass-manager";
+    // Use the old pass manager in LLVM 14 which the afl++ passes still use.
+    cc_params[cc_par_cnt++] = "-flegacy-pass-manager";
 #endif
 
     if (lto_mode && !have_c) {