diff options
author | Dmitry Vakhrushev <dmitry@netgate.com> | 2019-01-28 17:34:22 -0500 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-01-29 16:35:46 +0000 |
commit | cac8cfaba977d3822c06452817e43d7f0bdaa189 (patch) | |
tree | e577c38fae718b1717657b365163ef0c5e668e12 /src | |
parent | bf613955cacbce7e0b0ae3b25755f65abefc2ec0 (diff) |
Fix error while compiling using 'vlib/vlib.h' dependencie.
This variable without any needed 'define' becoming unused.
Change-Id: I661a75a78dba03abb861ed918ad1e634a8ecd0af
Signed-off-by: Dmitry Vakhrushev <dmitry@netgate.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/vlib/buffer_funcs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vlib/buffer_funcs.h b/src/vlib/buffer_funcs.h index 1c1cd28e95f..cedd7d02646 100644 --- a/src/vlib/buffer_funcs.h +++ b/src/vlib/buffer_funcs.h @@ -101,7 +101,9 @@ static_always_inline void vlib_get_buffers_with_offset (vlib_main_t * vm, u32 * bi, void **b, int count, i32 offset) { +#if defined (CLIB_HAVE_VEC256) || defined (CLIB_HAVE_VEC128) uword buffer_mem_start = vm->buffer_main->buffer_mem_start; +#endif #ifdef CLIB_HAVE_VEC256 u64x4 off = u64x4_splat (buffer_mem_start + offset); /* if count is not const, compiler will not unroll while loop |