diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-23 01:07:19 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-23 01:07:19 +0000 |
commit | dbfb5f853547c4cc2b4b39e90f01537dd317457a (patch) | |
tree | 9391a56fa191e42c43afcb3879a6d4ad6073ea2a /include/clang/Analysis/LocalCheckers.h | |
parent | a4e70568ae8902d48aad215c16b0fc8b40308106 (diff) |
Add initial implementation of checking for uses of floating point as a loop counter.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76833 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Analysis/LocalCheckers.h')
-rw-r--r-- | include/clang/Analysis/LocalCheckers.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Analysis/LocalCheckers.h b/include/clang/Analysis/LocalCheckers.h index 9ff3f52f89..88fc8797ab 100644 --- a/include/clang/Analysis/LocalCheckers.h +++ b/include/clang/Analysis/LocalCheckers.h @@ -48,6 +48,9 @@ void CheckObjCUnusedIvar(ObjCImplementationDecl* D, BugReporter& BR); void RegisterAppleChecks(GRExprEngine& Eng); +void CheckSecuritySyntaxOnly(Decl *D, BugReporter &BR); + + } // end namespace clang #endif |