mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-03-02 11:34:28 +01:00
Revert disabling AVX path in SPU verification.
It was experimental and builds for tests are available in history.
This commit is contained in:
parent
9060177dbd
commit
52c589ed3d
|
|
@ -288,7 +288,7 @@ bool spu_recompiler::compile(u64 last_reset_count, const std::vector<u32>& func)
|
|||
c->jnz(label_diff);
|
||||
c->vzeroupper();
|
||||
}
|
||||
else if (0 && utils::has_512())
|
||||
else if (utils::has_512())
|
||||
{
|
||||
// AVX-512 optimized check using 256-bit registers
|
||||
words_align = 32;
|
||||
|
|
@ -410,7 +410,7 @@ bool spu_recompiler::compile(u64 last_reset_count, const std::vector<u32>& func)
|
|||
|
||||
c->vzeroupper();
|
||||
}
|
||||
else if (0 && utils::has_avx())
|
||||
else if (utils::has_avx())
|
||||
{
|
||||
// Mainstream AVX
|
||||
words_align = 32;
|
||||
|
|
|
|||
Loading…
Reference in a new issue