diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-11-11 13:42:54 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-11-11 13:42:54 +0000 |
commit | d694485f9d6e3ea7b458df8241dfffd38f62aca8 (patch) | |
tree | abc746fa1d5d3f6a7e533ca0de27be453446cbc8 /lib/Analysis/GRExprEngineInternalChecks.h | |
parent | 6cc46edcd7e1f507fa231bdb1fa035ad08b5782c (diff) |
Add undefined array subscript checker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86837 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRExprEngineInternalChecks.h')
-rw-r--r-- | lib/Analysis/GRExprEngineInternalChecks.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Analysis/GRExprEngineInternalChecks.h b/lib/Analysis/GRExprEngineInternalChecks.h index a0687fd10b..a9077bf757 100644 --- a/lib/Analysis/GRExprEngineInternalChecks.h +++ b/lib/Analysis/GRExprEngineInternalChecks.h @@ -33,6 +33,7 @@ void RegisterFixedAddressChecker(GRExprEngine &Eng); void RegisterCastToStructChecker(GRExprEngine &Eng); void RegisterUndefinedArgChecker(GRExprEngine &Eng); void RegisterArrayBoundChecker(GRExprEngine &Eng); +void RegisterUndefinedArraySubscriptChecker(GRExprEngine &Eng); } // end clang namespace #endif |