From 31a8beb44967207a8eecc17440783304493f145a Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Sun, 19 May 2024 13:47:53 +0200 Subject: support new llvm 19 changes --- src/afl-cc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/afl-cc.c b/src/afl-cc.c index c872b2eb..07155676 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -2844,7 +2844,7 @@ static void maybe_usage(aflcc_state_t *aflcc, int argc, char **argv) { " The best is LTO but it often needs RANLIB and AR settings outside " "of afl-cc.\n\n"); -#if LLVM_MAJOR > 10 || (LLVM_MAJOR == 10 && LLVM_MINOR > 0) +#if LLVM_MAJOR >= 11 || (LLVM_MAJOR == 10 && LLVM_MINOR > 0) #define NATIVE_MSG \ " LLVM-NATIVE: use llvm's native PCGUARD instrumentation (less " \ "performant)\n" -- cgit 1.4.1