diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2019-08-16 23:17:08 +0200 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-06-16 11:54:50 +0200 |
commit | 86b96ca47a3b08a16ed5ed865b2d1bdb46a6c8cb (patch) | |
tree | ad9fe069d9d30f089b647469222f38c8eb76843a /src/ARMJIT_x64/ARMJIT_Compiler.h | |
parent | 727be0fd927c1b28d596e12bdee3f301fcec3a49 (diff) |
remove unneeded dolphin code, C++11 static_assert
Diffstat (limited to 'src/ARMJIT_x64/ARMJIT_Compiler.h')
-rw-r--r-- | src/ARMJIT_x64/ARMJIT_Compiler.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/ARMJIT_x64/ARMJIT_Compiler.h b/src/ARMJIT_x64/ARMJIT_Compiler.h index 0ce7d8d..3151cbc 100644 --- a/src/ARMJIT_x64/ARMJIT_Compiler.h +++ b/src/ARMJIT_x64/ARMJIT_Compiler.h @@ -17,7 +17,7 @@ const Gen::X64Reg RSCRATCH2 = Gen::EDX; const Gen::X64Reg RSCRATCH3 = Gen::ECX; -class Compiler : public Gen::X64CodeBlock +class Compiler : public Gen::XEmitter { public: Compiler(); @@ -132,6 +132,9 @@ public: return Gen::R(RegCache.Mapping[reg]); } + u8* ResetStart; + u32 CodeMemSize; + void* MemoryFuncs9[3][2]; void* MemoryFuncs7[3][2][2]; |