mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-19 03:25:54 -04:00

Summary: The check flags constructs that prevent automatic move of local variables. Reviewers: aaron.ballman Subscribers: mgorny, xazax.hun, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D70390
29 lines
676 B
CMake
29 lines
676 B
CMake
set(LLVM_LINK_COMPONENTS support)
|
|
|
|
add_clang_library(clangTidyPerformanceModule
|
|
FasterStringFindCheck.cpp
|
|
ForRangeCopyCheck.cpp
|
|
ImplicitConversionInLoopCheck.cpp
|
|
InefficientAlgorithmCheck.cpp
|
|
InefficientStringConcatenationCheck.cpp
|
|
InefficientVectorOperationCheck.cpp
|
|
MoveConstArgCheck.cpp
|
|
MoveConstructorInitCheck.cpp
|
|
NoAutomaticMoveCheck.cpp
|
|
NoexceptMoveConstructorCheck.cpp
|
|
PerformanceTidyModule.cpp
|
|
TriviallyDestructibleCheck.cpp
|
|
TypePromotionInMathFnCheck.cpp
|
|
UnnecessaryCopyInitialization.cpp
|
|
UnnecessaryValueParamCheck.cpp
|
|
|
|
LINK_LIBS
|
|
clangAST
|
|
clangASTMatchers
|
|
clangAnalysis
|
|
clangBasic
|
|
clangLex
|
|
clangTidy
|
|
clangTidyUtils
|
|
)
|