diff options
author | Damjan Marion <damarion@cisco.com> | 2016-03-04 13:39:38 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2016-03-04 13:47:01 +0000 |
commit | 196cb3d82a7085a9122efadbe4ef1fd8ad19b01e (patch) | |
tree | 6e1532ac2f64a1a7f295783d8694d01592140899 | |
parent | 01be6a0cb1d16fbad9a7d33449489b3a86a78521 (diff) |
Use xxhash in map code when SSE4.2 not available
Change-Id: If4fb86cfeeaf35f3ae89946b437ce5160adbce94
Signed-off-by: Damjan Marion <damarion@cisco.com>
-rw-r--r-- | vnet/vnet/map/map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnet/vnet/map/map.c b/vnet/vnet/map/map.c index b55c4c2e519..deeab4d1450 100644 --- a/vnet/vnet/map/map.c +++ b/vnet/vnet/map/map.c @@ -17,7 +17,7 @@ #include "map.h" -#if defined(__powerpc64__) || defined(__aarch64__) +#ifndef __SSE4_2__ #include <vppinfra/xxhash.h> static inline u32 |