ppu interpreter: Allow non-ssse3 to use fast path
byte shuffle is now removed which was the barrier for ssse3 check.
This commit is contained in:
@@ -650,7 +650,7 @@ void ppu_thread::exec_task()
|
|||||||
return reinterpret_cast<func_t>((uptr)(u32)op)(*this, {u32(op >> 32)});
|
return reinterpret_cast<func_t>((uptr)(u32)op)(*this, {u32(op >> 32)});
|
||||||
};
|
};
|
||||||
|
|
||||||
if (cia % 8 || !s_use_ssse3 || UNLIKELY(state))
|
if (cia % 8 || UNLIKELY(state))
|
||||||
{
|
{
|
||||||
if (test_stopped()) return;
|
if (test_stopped()) return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user