[PATCH] D126034: [clang-tidy] bugfix in InfiniteLoopCheck to not print warnings for unevaluated loops
Artem Dergachev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon May 23 16:49:38 PDT 2022
NoQ added inline comments.
================
Comment at: clang/lib/Analysis/ExprMutationAnalyzer.cpp:234-236
+bool ExprMutationAnalyzer::isUnevaluated(const Expr *Exp) {
+ return isUnevaluated(Exp, Stm, Context);
+}
----------------
Shouldn't this one be removed now?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126034/new/
https://reviews.llvm.org/D126034
More information about the cfe-commits
mailing list