diff options
Diffstat (limited to 'src/vppinfra/hash.h')
-rw-r--r-- | src/vppinfra/hash.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vppinfra/hash.h b/src/vppinfra/hash.h index f5735bc92ee..968c7781c36 100644 --- a/src/vppinfra/hash.h +++ b/src/vppinfra/hash.h @@ -527,6 +527,12 @@ do { \ #define hash_mix64_step_3(a,b,c) hash_mix_step(a,b,c,35,49,11) #define hash_mix64_step_4(a,b,c) hash_mix_step(a,b,c,12,18,22) +#if uword_bits == 64 +#define hash_mix(a, b, c) hash_mix64 (a, b, c) +#else +#define hash_mix(a, b, c) hash_mix32 (a, b, c) +#endif + /* Hash function based on that of Bob Jenkins (bob_jenkins@compuserve.com). Thanks, Bob. */ #define hash_mix64(a0,b0,c0) \ |