diff options
author | Damjan Marion <damarion@cisco.com> | 2022-02-10 15:23:15 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2022-02-10 15:45:00 +0000 |
commit | e01ce5ad5d93c2239d0885d4b9486ba10447a529 (patch) | |
tree | 12c62f7370dd5270eb0f10026645436138a43143 /src/vppinfra/vector_neon.h | |
parent | f8c8809d009ea6e3785e4b66047d2b4982d6286e (diff) |
vppinfra:remove uXxY_is_greater
not needed, '>' works...
Type: improvement
Change-Id: I9bfbac787e8dca24e9b1bceda0922740eed26346
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra/vector_neon.h')
-rw-r--r-- | src/vppinfra/vector_neon.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vppinfra/vector_neon.h b/src/vppinfra/vector_neon.h index e7b31259f73..568b689c234 100644 --- a/src/vppinfra/vector_neon.h +++ b/src/vppinfra/vector_neon.h @@ -88,12 +88,6 @@ u8x16_compare_byte_mask (u8x16 v) return u8x16_compare_byte_mask (v); \ } \ \ - static_always_inline u##s##x##c t##s##x##c##_is_greater (t##s##x##c a, \ - t##s##x##c b) \ - { \ - return (u##s##x##c) vcgtq_##i (a, b); \ - } \ - \ static_always_inline t##s##x##c t##s##x##c##_add_saturate (t##s##x##c a, \ t##s##x##c b) \ { \ |