mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-11 23:16:05 +00:00
Fix aav arm/thumb detection (#9737)
This commit is contained in:
parent
610ceecdfb
commit
e889490b4b
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user