diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2024-03-21 08:40:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-21 08:40:08 -0700 |
commit | 556fe5f290ea88dcbb7ced16b0f057dcebce1fd0 (patch) | |
tree | acfb8ed07343ee5c3d78ec896e735771e8a6ce0b /lldb/source/Breakpoint/BreakpointResolverFileLine.cpp | |
parent | 0c8dfc85c3740bd8905e21642f616e6fd54854e0 (diff) | |
download | llvm-556fe5f290ea88dcbb7ced16b0f057dcebce1fd0.zip llvm-556fe5f290ea88dcbb7ced16b0f057dcebce1fd0.tar.gz llvm-556fe5f290ea88dcbb7ced16b0f057dcebce1fd0.tar.bz2 |
[lldb] Reland: Store SupportFile in FileEntry (NFC) (#85892)
This is another step towards supporting DWARF5 checksums and inline
source code in LLDB. This is a reland of #85468 but without the
functional change of storing the support file from the line table (yet).
Diffstat (limited to 'lldb/source/Breakpoint/BreakpointResolverFileLine.cpp')
-rw-r--r-- | lldb/source/Breakpoint/BreakpointResolverFileLine.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp b/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp index cc4e1d2..d7d8c71 100644 --- a/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp +++ b/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp @@ -147,8 +147,9 @@ void BreakpointResolverFileLine::FilterContexts(SymbolContextList &sc_list) { else continue; - if (file != sc.line_entry.file) { - LLDB_LOG(log, "unexpected symbol context file {0}", sc.line_entry.file); + if (file != sc.line_entry.GetFile()) { + LLDB_LOG(log, "unexpected symbol context file {0}", + sc.line_entry.GetFile()); continue; } @@ -223,7 +224,7 @@ void BreakpointResolverFileLine::DeduceSourceMapping( const bool case_sensitive = request_file.IsCaseSensitive(); for (const SymbolContext &sc : sc_list) { - FileSpec sc_file = sc.line_entry.file; + FileSpec sc_file = sc.line_entry.GetFile(); if (FileSpec::Equal(sc_file, request_file, /*full*/ true)) continue; |