Fix aav arm/thumb detection (#9737)

This commit is contained in:
Xilokar 2018-03-21 11:30:11 +01:00 committed by radare
parent 610ceecdfb
commit e889490b4b

View File

@ -6010,7 +6010,7 @@ static bool archIsArmOrThumb(RCore *core) {
return true;
}
if (r_str_startswith (as->cur->arch, "arm")) {
if (as->cur->bits < 64) {
if (as->bits < 64) {
return true;
}
}