diff options
-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 */ |