diff options
author | hexcoder- <heiko@hexco.de> | 2020-12-29 18:17:50 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-12-29 18:17:50 +0100 |
commit | 107c79b84b7cd7d90e8f9e10b3a46fbafcae39eb (patch) | |
tree | 6f3473452dc372b3dbc6683c642514a42833f18c /src | |
parent | 80767480f0f40d380c83069b5f82b808c76493cc (diff) | |
download | afl++-107c79b84b7cd7d90e8f9e10b3a46fbafcae39eb.tar.gz |
now fix afl-clang compiles on 32-Bit properly
Diffstat (limited to 'src')
-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) { |