summaryrefslogtreecommitdiffstats
path: root/Python/pyhash.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pyhash.c')
-rw-r--r--Python/pyhash.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/pyhash.c b/Python/pyhash.c
index 158c631..19aeeb7 100644
--- a/Python/pyhash.c
+++ b/Python/pyhash.c
@@ -415,9 +415,6 @@ siphash24(const void *src, Py_ssize_t src_sz) {
/* modified */
t = (v0 ^ v1) ^ (v2 ^ v3);
-#if SIZEOF_VOID_P == 4
- t ^= (t >> 32);
-#endif
return (Py_hash_t)t;
}