diff options
Diffstat (limited to 'vppinfra')
-rw-r--r-- | vppinfra/vppinfra/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vppinfra/vppinfra/string.h b/vppinfra/vppinfra/string.h index 12498215c66..8a2918f80c1 100644 --- a/vppinfra/vppinfra/string.h +++ b/vppinfra/vppinfra/string.h @@ -57,7 +57,7 @@ void clib_memswap (void * _a, void * _b, uword bytes); #if __AVX__ #include <vppinfra/memcpy_avx.h> -#elif __SSE3__ +#elif __SSSE3__ #include <vppinfra/memcpy_sse3.h> #else #define clib_memcpy(a,b,c) memcpy(a,b,c) |