[clang] [clang][ssaf] Implement JSONFormat (PR #180021)
Balázs Benics via cfe-commits
cfe-commits at lists.llvm.org
Mon Feb 16 06:45:52 PST 2026
================
@@ -68,7 +76,7 @@ TUSummary MockSerializationFormat::readTUSummary(llvm::StringRef Path) {
auto &Table = getIdTable(Summary);
std::unique_ptr<EntitySummary> Result = InfoEntry.Deserialize(Repr, Table);
- if (!Result) // TODO: Handle error.
+ if (!Result)
continue;
----------------
steakhal wrote:
I think we should create some StringError or something to return here. This isn't actually handled this way.
https://github.com/llvm/llvm-project/pull/180021
More information about the cfe-commits
mailing list