diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-07-14 23:41:13 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-07-14 23:41:13 +0000 |
commit | fb9a48cf5ecceaa96f26a4595305e67546dcad33 (patch) | |
tree | 28da0f4a9b0c38ac9ec67178e408570e393be198 /Driver/clang.cpp | |
parent | 8f2698621f5090db1dea691059bd0ebd79fb7f14 (diff) |
Break off declaration of Analysis enum into Analyses.def. The driver options in
clang.cpp now #include these definitions to create the command line options, and
AnalysisConsumer #includes this file to generate the switch statement to create
actions.
Renamed -check-objc-methodsigs to -warn-objc-methodsigs.
The "missing -dealloc" check is now optional: -warn-objc-missing-dealloc
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@53575 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Driver/clang.cpp')
-rw-r--r-- | Driver/clang.cpp | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/Driver/clang.cpp b/Driver/clang.cpp index d92d5d62e6..7ce730150e 100644 --- a/Driver/clang.cpp +++ b/Driver/clang.cpp @@ -162,21 +162,10 @@ AnalyzeAll("checker-opt-analyze-headers", static llvm::cl::list<Analyses> AnalysisList(llvm::cl::desc("Available Source Code Analyses:"), llvm::cl::values( -clEnumValN(CFGDump, "cfg-dump", "Display Control-Flow Graphs"), -clEnumValN(CFGView, "cfg-view", "View Control-Flow Graphs using GraphViz"), -clEnumValN(DisplayLiveVariables, "dump-live-variables", - "Print results of live variable analysis"), -clEnumValN(WarnDeadStores, "warn-dead-stores", - "Flag warnings of stores to dead variables"), -clEnumValN(WarnUninitVals, "warn-uninit-values", - "Flag warnings of uses of unitialized variables"), -clEnumValN(CheckObjCMethSigs, "check-objc-methodsigs", - "Check the Objective-C method signatures for type incompatibilities."), -clEnumValN(CheckerSimple, "checker-simple", - "Perform simple path-sensitive checks."), -clEnumValN(CheckerCFRef, "checker-cfref", - "Run the [Core] Foundation reference count checker"), -clEnumValEnd)); +#define ANALYSIS(NAME, CMDFLAG, DESC)\ +clEnumValN(NAME, CMDFLAG, DESC), +#include "Analyses.def" +clEnumValEnd)); //===----------------------------------------------------------------------===// // Language Options |