[Lldb-commits] [PATCH] D30454: [LLDB][MIPS] Fix typo in MatchesModuleSpec()

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Feb 28 08:47:53 PST 2017


clayborg added a comment.

Object name is used for a module spec where the file is "/tmp/foo.a" and the object name is "bar.o". So this is for named objects within a container file like a BSD archive. If there is no object name, it doesn't need to be matched. If there is an object name, then the object name must match. All of the other tests are returning false when a there is no match. The original code is correct.


https://reviews.llvm.org/D30454





More information about the lldb-commits mailing list