diff options
Diffstat (limited to 'lldb/source/Target/TargetList.cpp')
-rw-r--r-- | lldb/source/Target/TargetList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/TargetList.cpp b/lldb/source/Target/TargetList.cpp index ff9e8558ccd..c67b42fa1fc 100644 --- a/lldb/source/Target/TargetList.cpp +++ b/lldb/source/Target/TargetList.cpp @@ -301,7 +301,7 @@ TargetList::FindTargetWithExecutableAndArchitecture { if (exe_arch_ptr) { - if (*exe_arch_ptr != exe_module->GetArchitecture()) + if (!exe_arch_ptr->IsCompatibleMatch(exe_module->GetArchitecture())) continue; } target_sp = *pos; |