diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2020-02-04 19:07:30 +0100 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-06-16 11:57:53 +0200 |
commit | 272542972775368cec990561e419e84e34e09fe8 (patch) | |
tree | ce0ec128b3de7cfbd957974a720de7df828d2227 /src/ARMJIT_A64/ARMJIT_Compiler.cpp | |
parent | 3173e6e25d4456ec3ba26bed18d212bdf6cdfe81 (diff) |
fix LDM usermode for aarch64 as well
Diffstat (limited to 'src/ARMJIT_A64/ARMJIT_Compiler.cpp')
-rw-r--r-- | src/ARMJIT_A64/ARMJIT_Compiler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ARMJIT_A64/ARMJIT_Compiler.cpp b/src/ARMJIT_A64/ARMJIT_Compiler.cpp index b598ac8..d61cc9c 100644 --- a/src/ARMJIT_A64/ARMJIT_Compiler.cpp +++ b/src/ARMJIT_A64/ARMJIT_Compiler.cpp @@ -357,7 +357,8 @@ const Compiler::CompileFunc A_Comp[ARMInstrInfo::ak_Count] = // Branch F(BranchImm), F(BranchImm), F(BranchImm), F(BranchXchangeReg), F(BranchXchangeReg), // Special - NULL, NULL, NULL, NULL, NULL, NULL, NULL + NULL, NULL, NULL, NULL, NULL, NULL, NULL, + F(Nop) }; #undef F #define F(x) &Compiler::T_Comp_##x |