[clang-tidy] Move checks from misc- to performance-
authorAlexander Kornienko <alexfh@google.com>
Mon, 27 Nov 2017 13:06:28 +0000 (13:06 +0000)
committerAlexander Kornienko <alexfh@google.com>
Mon, 27 Nov 2017 13:06:28 +0000 (13:06 +0000)
commit6e39e68983045fe48fb955f24afe376b46eb3600
tree96689a4d0c1d2385d6e9f4700744748713a0c860
parent2d4f1427267ddfae8fcab9d7764563b0d2b959cf
[clang-tidy] Move checks from misc- to performance-

Summary:
rename_check.py misc-move-constructor-init performance-move-constructor-init
rename_check.py misc-inefficient-algorithm performance-inefficient-algorithm

Reviewers: hokein, aaron.ballman

Reviewed By: hokein, aaron.ballman

Subscribers: aaron.ballman, mgorny, xazax.hun, cfe-commits

Differential Revision: https://reviews.llvm.org/D40487

llvm-svn: 319023
17 files changed:
clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp
clang-tools-extra/clang-tidy/misc/CMakeLists.txt
clang-tools-extra/clang-tidy/misc/MiscTidyModule.cpp
clang-tools-extra/clang-tidy/performance/CMakeLists.txt
clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.cpp [moved from clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.cpp with 99% similarity]
clang-tools-extra/clang-tidy/performance/InefficientAlgorithmCheck.h [moved from clang-tools-extra/clang-tidy/misc/InefficientAlgorithmCheck.h with 78% similarity]
clang-tools-extra/clang-tidy/performance/MoveConstructorInitCheck.cpp [moved from clang-tools-extra/clang-tidy/misc/MoveConstructorInitCheck.cpp with 98% similarity]
clang-tools-extra/clang-tidy/performance/MoveConstructorInitCheck.h [moved from clang-tools-extra/clang-tidy/misc/MoveConstructorInitCheck.h with 76% similarity]
clang-tools-extra/clang-tidy/performance/PerformanceTidyModule.cpp
clang-tools-extra/docs/ReleaseNotes.rst
clang-tools-extra/docs/clang-tidy/checks/cert-oop11-cpp.rst
clang-tools-extra/docs/clang-tidy/checks/list.rst
clang-tools-extra/docs/clang-tidy/checks/performance-inefficient-algorithm.rst [moved from clang-tools-extra/docs/clang-tidy/checks/misc-inefficient-algorithm.rst with 80% similarity]
clang-tools-extra/docs/clang-tidy/checks/performance-move-constructor-init.rst [moved from clang-tools-extra/docs/clang-tidy/checks/misc-move-constructor-init.rst with 74% similarity]
clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp
clang-tools-extra/test/clang-tidy/performance-inefficient-algorithm.cpp [moved from clang-tools-extra/test/clang-tidy/misc-inefficient-algorithm.cpp with 96% similarity]
clang-tools-extra/test/clang-tidy/performance-move-constructor-init.cpp [moved from clang-tools-extra/test/clang-tidy/misc-move-constructor-init.cpp with 92% similarity]