From: Greg Clayton Date: Tue, 2 Oct 2012 06:04:17 +0000 (+0000) Subject: X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=548e9a3e619fe0d2142a330bb3dcfacf0739efb5;p=platform%2Fupstream%2Fllvm.git Shared libraries on MacOSX were not properly being removed from the shared module list when re-running a debug session due to an error in: Module::MatchesModuleSpec() llvm-svn: 164991 --- diff --git a/lldb/source/Core/Module.cpp b/lldb/source/Core/Module.cpp index 7ef05d9..64a5ebd 100644 --- a/lldb/source/Core/Module.cpp +++ b/lldb/source/Core/Module.cpp @@ -1171,7 +1171,7 @@ Module::MatchesModuleSpec (const ModuleSpec &module_ref) const FileSpec &platform_file_spec = module_ref.GetPlatformFileSpec(); if (platform_file_spec) { - if (!FileSpec::Equal (platform_file_spec, m_platform_file, platform_file_spec.GetDirectory())) + if (!FileSpec::Equal (platform_file_spec, GetPlatformFileSpec (), platform_file_spec.GetDirectory())) return false; }