summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-27 21:31:50 -0400
committerGravatar bunnei2014-04-27 21:31:50 -0400
commit535947a0e1a758ddd26115889d75e1ad3be99d43 (patch)
treecde2ac0e97da4896adecb3fb2c6c117d9369f6cb /src/common
parentMerge branch 'hle-interface-updates' (diff)
downloadyuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.gz
yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.tar.xz
yuzu-535947a0e1a758ddd26115889d75e1ad3be99d43.zip
fix for issue Linux build #9, not sure why this is broken but its unused code I'm just getting rid of it
Diffstat (limited to 'src/common')
-rw-r--r--src/common/common_funcs.h13
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> {};
24 24
25#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) 25#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
26 26
27#if defined __GNUC__ && !defined __SSSE3__ && !defined _M_GENERIC
28#include <emmintrin.h>
29static __inline __m128i __attribute__((__always_inline__))
30_mm_shuffle_epi8(__m128i a, __m128i mask)
31{
32 __m128i result;
33 __asm__("pshufb %1, %0"
34 : "=x" (result)
35 : "xm" (mask), "0" (a));
36 return result;
37}
38#endif
39
40#ifndef _WIN32 27#ifndef _WIN32
41 28
42#include <errno.h> 29#include <errno.h>