diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-17 04:27:41 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-17 04:27:41 +0000 |
commit | be1fe1eb12a1cb91c8e3a9fcc2db4dfe989def6c (patch) | |
tree | 8622aef537c73c734dd3ecb08c70f5b8ac1a9ed4 /test/Analysis/fields.c | |
parent | 9add31798f621f843233dbff8bba103fca64447b (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 'test/Analysis/fields.c')
-rw-r--r-- | test/Analysis/fields.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Analysis/fields.c b/test/Analysis/fields.c index 60353d93ad..aa7acf26d1 100644 --- a/test/Analysis/fields.c +++ b/test/Analysis/fields.c @@ -1,5 +1,5 @@ -// RUN: clang -analyze -checker-cfref %s --analyzer-store-basic -verify && -// RUN: clang -analyze -checker-cfref %s --analyzer-store-region -verify && +// RUN: clang -analyze -checker-cfref %s --analyzer-store=basic -verify && +// RUN: clang -analyze -checker-cfref %s --analyzer-store=region -verify && // RUN: clang -analyze -checker-simple %s -verify unsigned foo(); |