[PATCH] D35673: [analyzer] A better CFG-based suppress-on-sink.
Devin Coughlin via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Jul 25 13:02:46 PDT 2017
dcoughlin added inline comments.
================
Comment at: cfe/trunk/lib/StaticAnalyzer/Core/BugReporter.cpp:3313
+static bool isDominatedByNoReturnBlocks(const ExplodedNode *N) {
+ const CFG &Cfg = N->getCFG();
----------------
Do you really mean "is dominated by"? That is, "every path from the entry to N's block goes through a no-return block"? Or do you mean "the exit block is not reachable from N's block"?
Repository:
rL LLVM
https://reviews.llvm.org/D35673
More information about the cfe-commits
mailing list