diff options
Diffstat (limited to 'include/clang/Analysis/LocalCheckers.h')
-rw-r--r-- | include/clang/Analysis/LocalCheckers.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/clang/Analysis/LocalCheckers.h b/include/clang/Analysis/LocalCheckers.h index c6d53e60ef..ffcffe3305 100644 --- a/include/clang/Analysis/LocalCheckers.h +++ b/include/clang/Analysis/LocalCheckers.h @@ -31,28 +31,28 @@ class BugReporter; class ObjCImplementationDecl; class LangOptions; class GRExprEngine; - -void CheckDeadStores(LiveVariables& L, BugReporter& BR); - + +void CheckDeadStores(LiveVariables& L, BugReporter& BR); + void CheckUninitializedValues(CFG& cfg, ASTContext& Ctx, Diagnostic& Diags, bool FullUninitTaint=false); - + GRTransferFuncs* MakeCFRefCountTF(ASTContext& Ctx, bool GCEnabled, - const LangOptions& lopts); - + const LangOptions& lopts); + void CheckObjCDealloc(const ObjCImplementationDecl* D, const LangOptions& L, BugReporter& BR); - + void CheckObjCInstMethSignature(const ObjCImplementationDecl *ID, BugReporter& BR); void CheckObjCUnusedIvar(const ObjCImplementationDecl *D, BugReporter& BR); - + void RegisterAppleChecks(GRExprEngine& Eng, const Decl &D); - + void CheckSecuritySyntaxOnly(const Decl *D, BugReporter &BR); - + } // end namespace clang #endif |