eal: remove unneeded conditionals for SSE headers

Our x86 baseline is to have support for SSE4.2, so therefore there is no
point in conditions around the inclusion of SSE1 - SSE4 headers.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
This commit is contained in:
Bruce Richardson 2017-06-20 16:22:59 +01:00 committed by Thomas Monjalon
parent f27769f796
commit f46e442ca0
2 changed files with 1 additions and 21 deletions

View File

@ -40,17 +40,11 @@ extern "C" {
#include "generic/rte_pause.h"
#ifdef __SSE2__
#include <emmintrin.h>
static inline void rte_pause(void)
{
_mm_pause();
}
#else
static inline void rte_pause(void)
{
}
#endif
#ifdef __cplusplus
}

View File

@ -45,21 +45,7 @@
#if (defined(__ICC) || (__GNUC__ == 4 && __GNUC_MINOR__ < 4))
#ifdef __SSE__
#include <xmmintrin.h>
#endif
#ifdef __SSE2__
#include <emmintrin.h>
#endif
#ifdef __SSE3__
#include <tmmintrin.h>
#endif
#if defined(__SSE4_2__) || defined(__SSE4_1__)
#include <smmintrin.h>
#endif
#include <smmintrin.h> /* SSE4 */
#if defined(__AVX__)
#include <immintrin.h>