diff options
author | Damjan Marion <damarion@cisco.com> | 2017-04-26 15:32:12 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2017-05-09 17:52:43 +0000 |
commit | 7bee80c823ca77de3aca803fdede77e4c7385a52 (patch) | |
tree | 827e8815fe68d70a5220a3e2890d37c299845e6d /src/vppinfra | |
parent | b0972cbb35550619483b90004a00566f9641f983 (diff) |
Fix remaining 32-bit compile issues
Change-Id: I9664214652229b663c3e3ba7406b4ede96bfb123
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vppinfra')
-rw-r--r-- | src/vppinfra/mheap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/mheap.c b/src/vppinfra/mheap.c index b8828f9e3e7..192732db5f9 100644 --- a/src/vppinfra/mheap.c +++ b/src/vppinfra/mheap.c @@ -304,7 +304,7 @@ mheap_small_object_cache_mask (mheap_small_object_cache_t * c, uword bin) uword mask; /* $$$$ ELIOT FIXME: add Altivec version of this routine */ -#if !defined (CLIB_HAVE_VEC128) || defined (__ALTIVEC__) +#if !defined (CLIB_HAVE_VEC128) || defined (__ALTIVEC__) || defined (__i386__) mask = 0; #else u8x16 b = u8x16_splat (bin); |