mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-01 03:32:07 +00:00
Properly ignore SIMD macros to avoid warning
This commit is contained in:
parent
23094b48bb
commit
ebb1ae6408
@ -10,7 +10,7 @@
|
||||
#include <cmath>
|
||||
|
||||
#if !defined(_MSC_VER) && !defined(__SSSE3__)
|
||||
#define _mm_shuffle_epi8
|
||||
#define _mm_shuffle_epi8(opa, opb) opb
|
||||
#endif
|
||||
|
||||
inline u64 dup32(u32 x) { return x | static_cast<u64>(x) << 32; }
|
||||
|
@ -15,7 +15,7 @@ const bool s_use_ssse3 =
|
||||
true;
|
||||
#else
|
||||
false;
|
||||
#define _mm_shuffle_epi8
|
||||
#define _mm_shuffle_epi8(opa, opb) opb
|
||||
#endif
|
||||
|
||||
namespace
|
||||
|
Loading…
Reference in New Issue
Block a user