[Lldb-commits] [lldb] r170926 - /lldb/trunk/source/Host/macosx/Symbols.cpp
Sean Callanan
scallanan at apple.com
Fri Dec 21 13:32:25 PST 2012
Author: spyffe
Date: Fri Dec 21 15:32:25 2012
New Revision: 170926
URL: http://llvm.org/viewvc/llvm-project?rev=170926&view=rev
Log:
Fixed a bug where we could accept the wrong
slice of a fat dSYM in certain cases.
<rdar://problem/12921206>
Modified:
lldb/trunk/source/Host/macosx/Symbols.cpp
Modified: lldb/trunk/source/Host/macosx/Symbols.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/macosx/Symbols.cpp?rev=170926&r1=170925&r2=170926&view=diff
==============================================================================
--- lldb/trunk/source/Host/macosx/Symbols.cpp (original)
+++ lldb/trunk/source/Host/macosx/Symbols.cpp Fri Dec 21 15:32:25 2012
@@ -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;
}
More information about the lldb-commits
mailing list