File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
lldb/source/Plugins/SymbolFile/DWARF Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1797,6 +1797,10 @@ SymbolFileDWARF::GetDwoSymbolFileForCompileUnit(
1797
1797
dwo_file.AppendPathComponent (dwo_name);
1798
1798
}
1799
1799
1800
+ if (dwo_file.GetFileNameExtension () == " .pcm" ||
1801
+ dwo_file.GetFileNameExtension () == " .pch" )
1802
+ return nullptr ;
1803
+
1800
1804
if (!FileSystem::Instance ().Exists (dwo_file)) {
1801
1805
unit.SetDwoError (
1802
1806
Status (" unable to locate .dwo debug file \" %s\" for skeleton DIE "
@@ -1811,10 +1815,6 @@ SymbolFileDWARF::GetDwoSymbolFileForCompileUnit(
1811
1815
return nullptr ;
1812
1816
}
1813
1817
1814
- if (dwo_file.GetFileNameExtension () == " .pcm" ||
1815
- dwo_file.GetFileNameExtension () == " .pch" )
1816
- return nullptr ;
1817
-
1818
1818
const lldb::offset_t file_offset = 0 ;
1819
1819
DataBufferSP dwo_file_data_sp;
1820
1820
lldb::offset_t dwo_file_data_offset = 0 ;
You can’t perform that action at this time.
0 commit comments