diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2020-12-24 10:46:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-24 10:46:59 +0100 |
commit | dbdb95bc2369d9961374abdf946277f322799802 (patch) | |
tree | dab9edc52b1d5b5d8173f01c0184496f4e53c6ae | |
parent | 92bf656cd3a503f0ced5041860403ad1459ab4dc (diff) | |
download | afl++-dbdb95bc2369d9961374abdf946277f322799802.tar.gz |
use positive logic to be future safe
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index cddde87c..de780be0 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -40,7 +40,7 @@ #include <sys/wait.h> #include <sys/types.h> -#if !__GNUC__ +#if __llvm__ #include "llvm/Config/llvm-config.h" #endif |