================ @@ -4296,7 +4297,8 @@ bool SymbolFileDWARF::GetSeparateDebugInfo(StructuredData::Dictionary &d) { dwarf_cu->GetDwoError().AsCString("unknown")); } dwo_data->AddBooleanItem("loaded", dwo_symfile != nullptr); - separate_debug_info_files.AddItem(dwo_data); + if (!errors_only || (errors_only && dwo_data->HasKey("error"))) ---------------- jeffreytan81 wrote:
You do not need the second `errors_only` check. Simply use: ``` !errors_only || dwo_data->HasKey("error") ``` https://github.com/llvm/llvm-project/pull/71000 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits