diff options
| author | Yang Liu <liuyang22@iscas.ac.cn> | 2023-03-23 15:10:43 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-23 08:10:43 +0100 |
| commit | 6d8de238a0d42ddd7f6c1d2da41e00cc90dbce65 (patch) | |
| tree | 261f376efa651bb71ac84c8bf4d868b51258be37 | |
| parent | c0d3135e5420f34cd65be49adb674d822f601f78 (diff) | |
| download | box64-6d8de238a0d42ddd7f6c1d2da41e00cc90dbce65.tar.gz box64-6d8de238a0d42ddd7f6c1d2da41e00cc90dbce65.zip | |
[ARM64_DYNAREC] Fixed UFLAG_OP12 helper macro (#623)
| -rwxr-xr-x | src/dynarec/arm64/dynarec_arm64_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/arm64/dynarec_arm64_helper.h b/src/dynarec/arm64/dynarec_arm64_helper.h index 2308be43..ea0a9a47 100755 --- a/src/dynarec/arm64/dynarec_arm64_helper.h +++ b/src/dynarec/arm64/dynarec_arm64_helper.h @@ -769,7 +769,7 @@ #endif #define UFLAG_OP1(A) if(dyn->insts[ninst].x64.gen_flags) {STRxw_U12(A, xEmu, offsetof(x64emu_t, op1));} #define UFLAG_OP2(A) if(dyn->insts[ninst].x64.gen_flags) {STRxw_U12(A, xEmu, offsetof(x64emu_t, op2));} -#define UFLAG_OP12(A1, A2) if(dyn->insts[ninst].x64.gen_flags) {STRxw_U12(A1, xEmu, offsetof(x64emu_t, op1));STRxw_U12(A2, 0, offsetof(x64emu_t, op2));} +#define UFLAG_OP12(A1, A2) if(dyn->insts[ninst].x64.gen_flags) {STRxw_U12(A1, xEmu, offsetof(x64emu_t, op1));STRxw_U12(A2, xEmu, offsetof(x64emu_t, op2));} #define UFLAG_RES(A) if(dyn->insts[ninst].x64.gen_flags) {STRxw_U12(A, xEmu, offsetof(x64emu_t, res));} #define UFLAG_DF(r, A) if(dyn->insts[ninst].x64.gen_flags) {SET_DF(r, A)} #define UFLAG_IF if(dyn->insts[ninst].x64.gen_flags) |