================ @@ -269,6 +472,23 @@ void BranchCloneCheck::check(const MatchFinder::MatchResult &Result) { return; } + if (const auto *IS = Result.Nodes.getNodeAs<IfStmt>("ifWithDescendantIf")) { + const Stmt *Then = IS->getThen(); + if (const CompoundStmt *CS = dyn_cast<CompoundStmt>(Then)) { + if (!CS->body_empty()) { ---------------- 5chmidti wrote:
These two `if` statements could be one https://github.com/llvm/llvm-project/pull/114715 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits