[InstCombine] Signed saturation patterns
[llvm-complete.git] / utils / gn / secondary / clang-tools-extra / clang-tidy / readability / BUILD.gn
blobb82db708cc894fbfda26a7677e3c8e9e9bc53c77
1 static_library("readability") {
2   output_name = "clangTidyReadabilityModule"
3   configs += [ "//llvm/utils/gn/build:clang_code" ]
4   deps = [
5     "//clang-tools-extra/clang-tidy",
6     "//clang-tools-extra/clang-tidy/utils",
7     "//clang/lib/AST",
8     "//clang/lib/ASTMatchers",
9     "//clang/lib/Basic",
10     "//clang/lib/Lex",
11     "//clang/lib/Tooling",
12     "//llvm/lib/Support",
13   ]
14   sources = [
15     "AvoidConstParamsInDecls.cpp",
16     "BracesAroundStatementsCheck.cpp",
17     "ConstReturnTypeCheck.cpp",
18     "ContainerSizeEmptyCheck.cpp",
19     "ConvertMemberFunctionsToStatic.cpp",
20     "DeleteNullPointerCheck.cpp",
21     "DeletedDefaultCheck.cpp",
22     "ElseAfterReturnCheck.cpp",
23     "FunctionSizeCheck.cpp",
24     "IdentifierNamingCheck.cpp",
25     "ImplicitBoolConversionCheck.cpp",
26     "InconsistentDeclarationParameterNameCheck.cpp",
27     "IsolateDeclarationCheck.cpp",
28     "MagicNumbersCheck.cpp",
29     "MisleadingIndentationCheck.cpp",
30     "MisplacedArrayIndexCheck.cpp",
31     "NamedParameterCheck.cpp",
32     "NamespaceCommentCheck.cpp",
33     "NonConstParameterCheck.cpp",
34     "ReadabilityTidyModule.cpp",
35     "RedundantControlFlowCheck.cpp",
36     "RedundantDeclarationCheck.cpp",
37     "RedundantFunctionPtrDereferenceCheck.cpp",
38     "RedundantMemberInitCheck.cpp",
39     "RedundantPreprocessorCheck.cpp",
40     "RedundantSmartptrGetCheck.cpp",
41     "RedundantStringCStrCheck.cpp",
42     "RedundantStringInitCheck.cpp",
43     "SimplifyBooleanExprCheck.cpp",
44     "SimplifySubscriptExprCheck.cpp",
45     "StaticAccessedThroughInstanceCheck.cpp",
46     "StaticDefinitionInAnonymousNamespaceCheck.cpp",
47     "StringCompareCheck.cpp",
48     "UniqueptrDeleteReleaseCheck.cpp",
49     "UppercaseLiteralSuffixCheck.cpp",
50   ]