1 //===--- FloatLoopCounter.cpp - clang-tidy---------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #include "FloatLoopCounter.h"
10 #include "clang/AST/ASTContext.h"
11 #include "clang/ASTMatchers/ASTMatchFinder.h"
13 using namespace clang::ast_matchers
;
15 namespace clang::tidy::cert
{
17 void FloatLoopCounter::registerMatchers(MatchFinder
*Finder
) {
19 forStmt(hasIncrement(expr(hasType(realFloatingPointType())))).bind("for"),
23 void FloatLoopCounter::check(const MatchFinder::MatchResult
&Result
) {
24 const auto *FS
= Result
.Nodes
.getNodeAs
<ForStmt
>("for");
26 diag(FS
->getInc()->getExprLoc(), "loop induction expression should not have "
27 "floating-point type");
30 } // namespace clang::tidy::cert