From 7038627168697cadddd36e06ebeb38a4d4fef84d Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Fri, 14 Dec 2012 23:43:03 +0000 Subject: [PATCH] Fixed two conditionals that I accidentally reversed in r170152. llvm-svn: 170256 --- lldb/source/Host/macosx/Symbols.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/source/Host/macosx/Symbols.cpp b/lldb/source/Host/macosx/Symbols.cpp index e696d27..b102a4b 100644 --- a/lldb/source/Host/macosx/Symbols.cpp +++ b/lldb/source/Host/macosx/Symbols.cpp @@ -83,7 +83,7 @@ SkinnyMachOFileContainsArchAndUUID { ArchSpec file_arch(eArchTypeMachO, cputype, cpusubtype); - if (file_arch.IsCompatibleMatch(*arch)) + if (!file_arch.IsCompatibleMatch(*arch)) return false; } @@ -181,7 +181,7 @@ UniversalMachOFileContainsArchAndUUID if (arch) { ArchSpec fat_arch(eArchTypeMachO, arch_cputype, arch_cpusubtype); - if (fat_arch.IsCompatibleMatch(*arch)) + if (!fat_arch.IsCompatibleMatch(*arch)) continue; } -- 2.7.4