about summary refs log tree commit diff
path: root/instrumentation/afl-compiler-rt.o.c
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2021-11-03 21:36:10 +0100
committervanhauser-thc <vh@thc.org>2021-11-03 21:36:10 +0100
commit25c947cd5ae93cb865081f9259255b4fdb3ca3ba (patch)
tree3680cb76ac5e02b093149ae1a664f9a1b7d8845e /instrumentation/afl-compiler-rt.o.c
parent02a5d96846c222ab91b6c1edff9eeb9b75a6aefc (diff)
downloadafl++-25c947cd5ae93cb865081f9259255b4fdb3ca3ba.tar.gz
fix unneeded ifdef
Diffstat (limited to 'instrumentation/afl-compiler-rt.o.c')
-rw-r--r--instrumentation/afl-compiler-rt.o.c6
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 */