diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-18 21:53:01 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-18 21:53:01 +0000 |
commit | af79c1156af5d7894b0cc1d77313cca933c70206 (patch) | |
tree | 15bee3950929138435c51184c9aa49ee7a4b56fe | |
parent | 543409e200234a1c97ea38b9d52bce22ff807080 (diff) |
Turn on CF reference count checker.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49931 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/ccc-analyzer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/ccc-analyzer b/utils/ccc-analyzer index 83cc53be6d..4442c18e56 100755 --- a/utils/ccc-analyzer +++ b/utils/ccc-analyzer @@ -74,7 +74,7 @@ def analyze(args,language,output,files,verbose,htmldir): command = 'cp'.split() args = command + files + target.split() else: - command = 'clang -checker-simple'.split() + command = 'clang -checker-cfref'.split() args = command + args; if htmldir is not None: |