fix op->type in libr/anal/p/anal_x86_cs.c for FMOV in swich statement

This commit is contained in:
szt 2016-09-13 18:02:09 +03:00 committed by radare
parent bfeff9f10b
commit 17c3d30a47

View File

@ -1620,7 +1620,7 @@ static void anop(RAnal *a, RAnalOp *op, ut64 addr, const ut8 *buf, int len, csh
case X86_INS_FCMOVNU:
case X86_INS_FCMOVU:
op->family = R_ANAL_OP_FAMILY_FPU;
op->type = R_ANAL_OP_TYPE_MOV;
op->type = R_ANAL_OP_TYPE_CMOV;
break;
case X86_INS_CMOVA:
case X86_INS_CMOVAE: