mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 15:41:38 +00:00
Fix first parameter position for CLZ asm code (#9364)
Fix error in 4b74942
This commit is contained in:
parent
4b7494252e
commit
b35f936b73
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user