summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2019-11-08 17:35:52 -0800
committerAdrian Prantl <aprantl@apple.com>2019-11-11 12:21:38 -0800
commitda83e96273527a137f2ebd77cedb920180eab621 (patch)
treea1435f312d5c6dafd0bf15a788b277bf457d4740 /lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs
parentd24bce57c3ca2414ff5e53d8f7f3f007d6a946fe (diff)
downloadbcm5719-llvm-da83e96273527a137f2ebd77cedb920180eab621.tar.gz
bcm5719-llvm-da83e96273527a137f2ebd77cedb920180eab621.zip
Fix a regression in macOS-style path remapping.
When we switched to the LLVM .debug_line parser, the .dSYM-style path remapping logic stopped working for relative paths because of how RemapSourceFile silently fails for relative paths. This patch both makes the code more readable and fixes this particular bug. One interesting thing I learned is that Module::RemapSourceFile() is a macOS-only code path that operates on on the lldb::Module level and is completely separate from target.source-map, which operates on a per-Target level. Differential Revision: https://reviews.llvm.org/D70037 rdar://problem/56924558
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs')
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c6
-rw-r--r--lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c5
2 files changed, 8 insertions, 3 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c b/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c
index 556bda3c17d..41a6a46c926 100644
--- a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c
+++ b/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/main.c
@@ -1,8 +1,8 @@
-void stop() {}
+void relative();
int main()
{
- stop();
- // Hello World!
+ relative();
+ // Hello Absolute!
return 0;
}
diff --git a/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c b/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c
new file mode 100644
index 00000000000..02331834cf2
--- /dev/null
+++ b/lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/Inputs/relative.c
@@ -0,0 +1,5 @@
+void stop() {}
+void relative() {
+ stop();
+ // Hello Relative!
+}
OpenPOWER on IntegriCloud