Fix #4745 incorrect assembly for x86 mov (#4791)

This commit is contained in:
Sven Steinbauer 2016-05-06 15:08:41 +01:00 committed by radare
parent 51955396c2
commit 7c0b3eb64a

View File

@ -1088,7 +1088,7 @@ SETNP/SETPO - Set if No Parity / Set if Parity Odd (386+)
data[l++] = 0x24;
} else if (r==5) { // EBP
data[l++] = getreg (arg)<<3 | r | 0x40;
} else data[l++] = getreg (arg) | r | 0x40;
} else data[l++] = getreg (arg)<<3 | r | 0x40;
data[l++] = r_num_math (NULL, delta) * N;
} else {
int r = getreg (arg2);