From 4f611176e9e0673d644b40f6978a24c031e65709 Mon Sep 17 00:00:00 2001 From: Sirshak Das Date: Tue, 9 Oct 2018 11:28:44 -0500 Subject: 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 --- src/vppinfra/vector_neon.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit 1.2.3-korg