From 25c947cd5ae93cb865081f9259255b4fdb3ca3ba Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Wed, 3 Nov 2021 21:36:10 +0100 Subject: fix unneeded ifdef --- instrumentation/afl-compiler-rt.o.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'instrumentation/afl-compiler-rt.o.c') 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 */ -- cgit 1.4.1