[PATCH] D153805: Expose DataflowAnalysisContext.querySolver().
Yitzhak Mandelbaum via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 26 12:30:25 PDT 2023
ymandel accepted this revision.
ymandel added inline comments.
This revision is now accepted and ready to land.
================
Comment at: clang/include/clang/Analysis/FlowSensitive/DataflowAnalysisContext.h:178-181
+ /// Possible outcomes are:
+ /// - `Satisfiable`: A satisfying assignment exists and is returned.
+ /// - `Unsatisfiable`: A satisfying assignment does not exist.
+ /// - `TimedOut`: The search for a satisfying assignment was not completed.
----------------
nit: Given that these are options of `Solver::Result`, I think you can just delete these lines.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D153805/new/
https://reviews.llvm.org/D153805
More information about the cfe-commits
mailing list