diff options
author | vanhauser-thc <vh@thc.org> | 2023-04-15 11:36:58 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-04-15 11:36:58 +0200 |
commit | 120d009e7d7c425019e984c29e027af710a0a7df (patch) | |
tree | 52a736418652038e55d74f009687c298f8f54036 /instrumentation/afl-compiler-rt.o.c | |
parent | e12acaa20367f335549c2db97b88ac5c8ffbeab7 (diff) | |
download | afl++-120d009e7d7c425019e984c29e027af710a0a7df.tar.gz |
wasm support
Diffstat (limited to 'instrumentation/afl-compiler-rt.o.c')
-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 26fc7256..e0e40983 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -113,7 +113,7 @@ int __afl_selective_coverage __attribute__((weak)); int __afl_selective_coverage_start_off __attribute__((weak)); static int __afl_selective_coverage_temp = 1; -#if defined(__ANDROID__) || defined(__HAIKU__) +#if defined(__ANDROID__) || defined(__HAIKU__) || defined(NO_TLS) PREV_LOC_T __afl_prev_loc[NGRAM_SIZE_MAX]; PREV_LOC_T __afl_prev_caller[CTX_MAX_K]; u32 __afl_prev_ctx; |