Fixed a bug where we could accept the wrong
slice of a fat dSYM in certain cases.
<rdar://problem/12921206>
llvm-svn: 170926
diff --git a/lldb/source/Host/macosx/Symbols.cpp b/lldb/source/Host/macosx/Symbols.cpp
index b102a4b..03ce57e 100644
--- a/lldb/source/Host/macosx/Symbols.cpp
+++ b/lldb/source/Host/macosx/Symbols.cpp
@@ -181,7 +181,7 @@
if (arch)
{
ArchSpec fat_arch(eArchTypeMachO, arch_cputype, arch_cpusubtype);
- if (!fat_arch.IsCompatibleMatch(*arch))
+ if (!fat_arch.IsExactMatch(*arch))
continue;
}