[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang-tools-extra / clang-tidy / cert / FloatLoopCounter.cpp
bloba93638375978675f710597bc5cf66118d7568925
1 //===--- FloatLoopCounter.cpp - clang-tidy---------------------------------===//
2 //
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
6 //
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) {
18 Finder->addMatcher(
19 forStmt(hasIncrement(expr(hasType(realFloatingPointType())))).bind("for"),
20 this);
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