aboutsummaryrefslogtreecommitdiff
path: root/tools/ccc/ccclib/Tools.py
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-02-17 04:27:41 +0000
committerTed Kremenek <kremenek@apple.com>2009-02-17 04:27:41 +0000
commitbe1fe1eb12a1cb91c8e3a9fcc2db4dfe989def6c (patch)
tree8622aef537c73c734dd3ecb08c70f5b8ac1a9ed4 /tools/ccc/ccclib/Tools.py
parent9add31798f621f843233dbff8bba103fca64447b (diff)
Static Analyzer driver/options (partial) cleanup:
- Move all analyzer options logic to AnalysisConsumer.cpp. - Unified specification of stores/constraints/output to be: -analyzer-output=... -analyzer-store=... -analyzer-constraints=... instead of -analyzer-range-constraints, -analyzer-store-basic, etc. - Updated drivers (ccc-analyzer, scan-builds, new ccc) to obey this new interface - Updated test cases to conform to new driver options git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64737 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Tools.py')
-rw-r--r--tools/ccc/ccclib/Tools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py
index 5da2de28f9..dc1678ecbd 100644
--- a/tools/ccc/ccclib/Tools.py
+++ b/tools/ccc/ccclib/Tools.py
@@ -221,7 +221,7 @@ class Clang_CompileTool(Tool):
'-warn-objc-missing-dealloc',
'-warn-objc-unused-ivars'])
- cmd_args.append('-analyzer-output-plist')
+ cmd_args.append('-analyzer-output=plist')
# Add -Xanalyzer arguments when running as analyzer.
for arg in arglist.getArgs(arglist.parser.XanalyzerOption):