eal: remove unneeded conditionals for SSE headers
[dpdk.git] / lib / librte_eal / common / include / arch / x86 / rte_pause.h
index 22b879a..bb1e454 100644 (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
 }