Skip to content
Snippets Groups Projects
Commit 535947a0 authored by bunnei's avatar bunnei
Browse files

fix for issue Linux build #9, not sure why this is broken but its unused code...

fix for issue Linux build #9, not sure why this is broken but its unused code I'm just getting rid of it
parent 438dba40
No related branches found
No related tags found
No related merge requests found
...@@ -24,19 +24,6 @@ template<> struct CompileTimeAssert<true> {}; ...@@ -24,19 +24,6 @@ template<> struct CompileTimeAssert<true> {};
#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
#if defined __GNUC__ && !defined __SSSE3__ && !defined _M_GENERIC
#include <emmintrin.h>
static __inline __m128i __attribute__((__always_inline__))
_mm_shuffle_epi8(__m128i a, __m128i mask)
{
__m128i result;
__asm__("pshufb %1, %0"
: "=x" (result)
: "xm" (mask), "0" (a));
return result;
}
#endif
#ifndef _WIN32 #ifndef _WIN32
#include <errno.h> #include <errno.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment