diff options
author | hexcoder- <heiko@hexco.de> | 2020-12-29 14:19:35 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-12-29 14:19:35 +0100 |
commit | 83c1378fc1810d177d9cdfa2c00f62bbadd98f00 (patch) | |
tree | 8a363fd5a4117b5064d58d58bb0e362714e34d39 /src/afl-cc.c | |
parent | 871d42e38971e4dc775551f9544d1deb28a34055 (diff) | |
download | afl++-83c1378fc1810d177d9cdfa2c00f62bbadd98f00.tar.gz |
fix afl-clang on 32-Bit systems
Diffstat (limited to 'src/afl-cc.c')
-rw-r--r-- | src/afl-cc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c index 758b958b..e6a6718e 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -879,7 +879,7 @@ static void edit_params(u32 argc, char **argv, char **envp) { #ifndef __ANDROID__ - if (compiler_mode != GCC) { + if (compiler_mode != GCC && compiler_mode != CLANG) { switch (bit_mode) { |