From: Sirshak Das Date: Tue, 9 Oct 2018 16:28:44 +0000 (-0500) Subject: vppinfra: Fix extendto_high aarch64 NEON api. X-Git-Tag: v18.10-rc1~1 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=4f611176e9e0673d644b40f6978a24c031e65709 vppinfra: Fix extendto_high aarch64 NEON api. This fixes the l2BD and ip4 test case failures. Fixes VPP-1432, VPP-1428, VPP-1430 Change-Id: I48b5c961bab60cc3b39fcd6db47e098c81579480 Signed-off-by: Sirshak Das --- diff --git a/src/vppinfra/vector_neon.h b/src/vppinfra/vector_neon.h index 7570dddf1ab..f6d953cab81 100644 --- a/src/vppinfra/vector_neon.h +++ b/src/vppinfra/vector_neon.h @@ -145,7 +145,7 @@ u32x4_extend_to_u64x2 (u32x4 v) static_always_inline u64x2 u32x4_extend_to_u64x2_high (u32x4 v) { - return vmovl_high_u32 (vrev64q_u32 (v)); + return vmovl_high_u32 (v); } #define CLIB_HAVE_VEC128_UNALIGNED_LOAD_STORE