mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-13 10:18:40 +12: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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue