This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from f2f54ef [powerpc] deactivate readability-identifier-naming.cpp test o [...] new 94a7ed0 [ClangTidy] Add new performance-type-promotion-in-math-fn check.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-tidy/performance/CMakeLists.txt | 1 + clang-tidy/performance/PerformanceTidyModule.cpp | 6 +- .../performance/TypePromotionInMathFnCheck.cpp | 172 +++++++++++ .../performance/TypePromotionInMathFnCheck.h | 40 +++ docs/ReleaseNotes.rst | 6 + docs/clang-tidy/checks/list.rst | 1 + .../performance-type-promotion-in-math-fn.rst | 11 + .../performance-type-promotion-in-math-fn.cpp | 314 +++++++++++++++++++++ 8 files changed, 549 insertions(+), 2 deletions(-) create mode 100644 clang-tidy/performance/TypePromotionInMathFnCheck.cpp create mode 100644 clang-tidy/performance/TypePromotionInMathFnCheck.h create mode 100644 docs/clang-tidy/checks/performance-type-promotion-in-math-fn.rst create mode 100644 test/clang-tidy/performance-type-promotion-in-math-fn.cpp