diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-24 02:52:07 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-24 02:52:07 +0000 |
commit | 3a92d6d95ba894470c47ab2580135e8f094f0efe (patch) | |
tree | 147b0c6bd944bc958156a21f125f177eba686324 | |
parent | 5f28a1edf6decac64ca12e51ca4a929d26fc21f2 (diff) |
Enable the '-warn-security-syntactic' checker option by default.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@76933 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/scan-build | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/scan-build b/utils/scan-build index 5835628d59..79421caba9 100755 --- a/utils/scan-build +++ b/utils/scan-build @@ -148,6 +148,7 @@ my %AnalysesDefaultEnabled = ( # Do not enable the missing -dealloc check by default. # '-warn-objc-missing-dealloc' => 1, '-warn-objc-unused-ivars' => 1, + '-warn-security-syntactic' => 1 ); ##----------------------------------------------------------------------------## |