diff options
author | Damjan Marion <damarion@cisco.com> | 2018-05-22 14:07:47 +0200 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-05-22 13:43:00 +0000 |
commit | 14864770be4068b34ffc1124f47f5e9fe2a929d2 (patch) | |
tree | c6d429b37f90649d41ee69137372ce2547f97e7d /src/vppinfra/vector_avx512.h | |
parent | de412ce51f6f9ca879a09e49594b907e9e99a7ed (diff) |
vppinfra: add clib_count_equal_uXX and clib_memset_uXX functions
Change-Id: I56782652d8ef10304900cc293cfc0502689d800e
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/vector_avx512.h')
-rw-r--r-- | src/vppinfra/vector_avx512.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/vector_avx512.h b/src/vppinfra/vector_avx512.h index c2903e2aa1a..4aee8d1170a 100644 --- a/src/vppinfra/vector_avx512.h +++ b/src/vppinfra/vector_avx512.h @@ -48,7 +48,7 @@ t##s##x##c##_is_all_zero (t##s##x##c v) \ \ static_always_inline int \ t##s##x##c##_is_equal (t##s##x##c a, t##s##x##c b) \ -{ return t##s##x##c##_is_all_zero (a ^b); } \ +{ return t##s##x##c##_is_all_zero (a ^ b); } \ \ static_always_inline int \ t##s##x##c##_is_all_equal (t##s##x##c v, t##s x) \ |