diff options
author | vanhauser-thc <vh@thc.org> | 2021-11-03 21:36:10 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-11-03 21:36:10 +0100 |
commit | 25c947cd5ae93cb865081f9259255b4fdb3ca3ba (patch) | |
tree | 3680cb76ac5e02b093149ae1a664f9a1b7d8845e /instrumentation/afl-compiler-rt.o.c | |
parent | 02a5d96846c222ab91b6c1edff9eeb9b75a6aefc (diff) | |
download | afl++-25c947cd5ae93cb865081f9259255b4fdb3ca3ba.tar.gz |
fix unneeded ifdef
Diffstat (limited to 'instrumentation/afl-compiler-rt.o.c')
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 112893ee..fcd8caaf 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -158,11 +158,7 @@ static void at_exit(int signal) { } -#ifdef WORD_SIZE_64 - #define default_hash(a, b) XXH64(a, b, HASH_CONST) -#else - #define default_hash(a, b) XXH64(a, b, HASH_CONST) -#endif +#define default_hash(a, b) XXH64(a, b, HASH_CONST) /* Uninspired gcc plugin instrumentation */ |