[Lldb-commits] [PATCH] D57552: Handle "." in target.source-map in PathMapListing::FindFiles

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 1 13:52:26 PST 2019


clayborg added inline comments.


================
Comment at: source/Target/PathMappingList.cpp:223
+      
+      if (prefix_ref == ".") {
+        prefix_is_relative = true;
----------------
We are we finding a "." in any path now? I thought we normalized those all out? Can a PathMappingList contain non normalized paths? if so, can't we just normalize them as they go into the list?


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57552/new/

https://reviews.llvm.org/D57552





More information about the lldb-commits mailing list