From c576622667199db906efa3110ad25e552b3a0890 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Mon, 16 Apr 2018 00:18:34 +0200 Subject: dpdk: complete rework of the dpdk-input node Change-Id: If174d189de40e6f9ffae99997bba93a2519d9fda Signed-off-by: Damjan Marion --- src/vppinfra/vector_sse42.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vppinfra/vector_sse42.h') diff --git a/src/vppinfra/vector_sse42.h b/src/vppinfra/vector_sse42.h index dab22deff7c..cf7f158b873 100644 --- a/src/vppinfra/vector_sse42.h +++ b/src/vppinfra/vector_sse42.h @@ -200,9 +200,9 @@ u64x2_write_hi (u64x2 x, u64 * a) /* Unaligned loads/stores. */ #define _(t) \ - always_inline void t##_store_unaligned (t x, t * a) \ + always_inline void t##_store_unaligned (t x, void * a) \ { _mm_storeu_si128 ((__m128i *) a, (__m128i) x); } \ - always_inline t t##_load_unaligned (t * a) \ + always_inline t t##_load_unaligned (void * a) \ { return (t) _mm_loadu_si128 ((__m128i *) a); } _(u8x16) _(u16x8) _(u32x4) _(u64x2) _(i8x16) _(i16x8) _(i32x4) _(i64x2) -- cgit 1.2.3-korg