We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fa0f23 commit 118efa5Copy full SHA for 118efa5
lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
@@ -1225,6 +1225,9 @@ CompilerDeclContext SymbolFileDWARFDebugMap::FindNamespace(
1225
void SymbolFileDWARFDebugMap::DumpClangAST(Stream &s) {
1226
ForEachSymbolFile([&s](SymbolFileDWARF *oso_dwarf) -> bool {
1227
oso_dwarf->DumpClangAST(s);
1228
+ // The underlying assumption is that DumpClangAST(...) will obtain the
1229
+ // AST from the underlying TypeSystem and therefore we only need to do
1230
+ // this once and can stop after the first iteration hence we return true.
1231
return true;
1232
});
1233
}
0 commit comments