Fix first parameter position for CLZ asm code (#9364)

Fix error in 4b74942
This commit is contained in:
Michael Scherer 2018-02-10 20:44:08 +01:00 committed by Maijin
parent 4b7494252e
commit b35f936b73

View File

@ -1403,7 +1403,7 @@ static int arm_assemble(ArmOpcode *ao, ut64 off, const char *str) {
if (reg == -1 || reg > 14) {
return 0;
}
ao->o |= reg << 16;
ao->o |= reg << 20;
reg = getreg (ao->a[1]);
if (reg == -1 || reg > 14) {