forked from OSchip/llvm-project
[analyzer] Add core.CallAndMessage to StdCLibraryFunctionArgsChecker's dependency
Reviewers: Szelethus, NoQ Subscribers: whisperity, xazax.hun, baloghadamsoftware, szepet, rnkovacs, a.sidorin, mikhail.ramalho, donat.nagy, dkrupp, gamesh411, Charusso, steakhal, ASDenysPetrov, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D77061
This commit is contained in:
parent
bdf77209b9
commit
1a1bb876db
|
@ -299,7 +299,7 @@ def StdCLibraryFunctionArgsChecker : Checker<"StdCLibraryFunctionArgs">,
|
|||
HelpText<"Check constraints of arguments of C standard library functions, "
|
||||
"such as whether the parameter of isalpha is in the range [0, 255] "
|
||||
"or is EOF.">,
|
||||
Dependencies<[StdCLibraryFunctionsChecker]>,
|
||||
Dependencies<[StdCLibraryFunctionsChecker, CallAndMessageChecker]>,
|
||||
Documentation<NotDocumented>;
|
||||
|
||||
def TrustNonnullChecker : Checker<"TrustNonnull">,
|
||||
|
|
|
@ -7,11 +7,11 @@
|
|||
// CHECK: OVERVIEW: Clang Static Analyzer Enabled Checkers List
|
||||
// CHECK-EMPTY:
|
||||
// CHECK-NEXT: apiModeling.StdCLibraryFunctions
|
||||
// CHECK-NEXT: core.CallAndMessage
|
||||
// CHECK-NEXT: apiModeling.StdCLibraryFunctionArgs
|
||||
// CHECK-NEXT: apiModeling.TrustNonnull
|
||||
// CHECK-NEXT: apiModeling.llvm.CastValue
|
||||
// CHECK-NEXT: apiModeling.llvm.ReturnValue
|
||||
// CHECK-NEXT: core.CallAndMessage
|
||||
// CHECK-NEXT: core.DivideZero
|
||||
// CHECK-NEXT: core.DynamicTypePropagation
|
||||
// CHECK-NEXT: core.NonNullParamChecker
|
||||
|
|
Loading…
Reference in New Issue