diff options
author | Anton Yartsev <anton.yartsev@gmail.com> | 2013-03-25 01:35:45 +0000 |
---|---|---|
committer | Anton Yartsev <anton.yartsev@gmail.com> | 2013-03-25 01:35:45 +0000 |
commit | 13df03624bd21878c32e0d84b71b55bc1298cbcc (patch) | |
tree | 510b6a2625e3c59c9958c30ae210cf1a7eb7b74c /clang/utils/analyzer/SATestBuild.py | |
parent | 8ef2419d60dd960f50a72c4cbd0416580ace1c79 (diff) | |
download | bcm5719-llvm-13df03624bd21878c32e0d84b71b55bc1298cbcc.tar.gz bcm5719-llvm-13df03624bd21878c32e0d84b71b55bc1298cbcc.zip |
[analyzer] Adds cplusplus.NewDelete checker that check for memory leaks, double free, and use-after-free problems of memory managed by new/delete.
llvm-svn: 177849
Diffstat (limited to 'clang/utils/analyzer/SATestBuild.py')
-rwxr-xr-x | clang/utils/analyzer/SATestBuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/utils/analyzer/SATestBuild.py b/clang/utils/analyzer/SATestBuild.py index 067be162e27..3d8f7c0a14e 100755 --- a/clang/utils/analyzer/SATestBuild.py +++ b/clang/utils/analyzer/SATestBuild.py @@ -169,7 +169,7 @@ SBOutputDirReferencePrefix = "Ref" # The list of checkers used during analyzes. # Currently, consists of all the non experimental checkers. -Checkers="alpha.unix.SimpleStream,alpha.security.taint,core,deadcode,security,unix,osx" +Checkers="alpha.unix.SimpleStream,alpha.security.taint,core,cplusplus,deadcode,security,unix,osx" Verbose = 1 |