Remove constexpr from ppu/spu decoders.

We don't need them at compile time (yet).
But can reduce compile time and complexity.
This commit is contained in:
Nekotekina 2020-12-10 15:06:01 +03:00
parent b382d3b3e9
commit 65c04e4ddd
10 changed files with 28 additions and 28 deletions

View file

@ -291,7 +291,7 @@ void do_cell_atomic_128_store(u32 addr, const void* to_write);
extern thread_local u64 g_tls_fault_spu;
constexpr spu_decoder<spu_itype> s_spu_itype;
const spu_decoder<spu_itype> s_spu_itype;
namespace spu
{