x86: fix operand access of fistp & fstp, in #1255

This commit is contained in:
Nguyen Anh Quynh 2018-10-02 12:22:13 +02:00
parent fc8ba23378
commit a6b87b7bc3
1 changed files with 2 additions and 2 deletions

View File

@ -3207,7 +3207,7 @@
},
{ /* X86_IST_FP64m, X86_INS_FISTP: fistp{ll} $dst */
X86_FPU_FLAGS_RESET_C1 | X86_FPU_FLAGS_UNDEFINED_C0 | X86_FPU_FLAGS_UNDEFINED_C2 | X86_FPU_FLAGS_UNDEFINED_C3,
{ CS_AC_READ, 0 }
{ CS_AC_WRITE, 0 }
},
{ /* X86_Int_CMPSDrm, X86_INS_CMPSD: cmp${cc}sd $dst, $src */
X86_EFLAGS_MODIFY_OF | X86_EFLAGS_MODIFY_SF | X86_EFLAGS_MODIFY_ZF | X86_EFLAGS_MODIFY_AF | X86_EFLAGS_MODIFY_PF | X86_EFLAGS_MODIFY_CF,
@ -10127,7 +10127,7 @@
},
{ /* X86_ST_FPrr, X86_INS_FSTP: fstp $op */
X86_FPU_FLAGS_MODIFY_C1 | X86_FPU_FLAGS_UNDEFINED_C0 | X86_FPU_FLAGS_UNDEFINED_C2 | X86_FPU_FLAGS_UNDEFINED_C3,
{ CS_AC_READ, 0 }
{ CS_AC_WRITE, 0 }
},
{ /* X86_ST_FXCHST0r, X86_INS_FXCH: fxch st(0), $op */
X86_FPU_FLAGS_RESET_C1 | X86_FPU_FLAGS_UNDEFINED_C0 | X86_FPU_FLAGS_UNDEFINED_C2 | X86_FPU_FLAGS_UNDEFINED_C3,