diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-28 03:31:50 +0200 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-28 03:31:50 +0200 |
commit | 535947a0e1a758ddd26115889d75e1ad3be99d43 (patch) | |
tree | cde2ac0e97da4896adecb3fb2c6c117d9369f6cb /src | |
parent | Merge branch 'hle-interface-updates' (diff) | |
download | yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.gz yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.bz2 yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.lz yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.xz yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.zst yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/common_funcs.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h index 7ca0b3501..f8d10eb3e 100644 --- a/src/common/common_funcs.h +++ b/src/common/common_funcs.h @@ -24,19 +24,6 @@ template<> struct CompileTimeAssert<true> {}; #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 #include <errno.h> |