X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_hash%2Frte_cmp_x86.h;h=e8c484d607aeb2cb19650f24cfbb1e3f8b365525;hb=7a7122edf1c8d63e516d1b2c2eff6fa9b54e0f82;hp=7f79baceb92e7afe253890f2a919308c714451fa;hpb=fd1fa9bddd416bbe510bea340102f10d83602548;p=dpdk.git diff --git a/lib/librte_hash/rte_cmp_x86.h b/lib/librte_hash/rte_cmp_x86.h index 7f79baceb9..e8c484d607 100644 --- a/lib/librte_hash/rte_cmp_x86.h +++ b/lib/librte_hash/rte_cmp_x86.h @@ -44,7 +44,7 @@ rte_hash_k16_cmp_eq(const void *key1, const void *key2, size_t key_len __rte_unu #else const __m128i x = _mm_cmpeq_epi32(k1, k2); - return (_mm_movemask_epi8(x) != 0xffff); + return _mm_movemask_epi8(x) != 0xffff; #endif }