summaryrefslogtreecommitdiffstats
path: root/test/Analysis/complex.c
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 /test/Analysis/complex.c
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 'test/Analysis/complex.c')
-rw-r--r--test/Analysis/complex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Analysis/complex.c b/test/Analysis/complex.c
index fd3d429a1a..f2ade5aa1c 100644
--- a/test/Analysis/complex.c
+++ b/test/Analysis/complex.c
@@ -1,6 +1,6 @@
// RUN: clang -analyze -checker-simple -verify %s &&
-// RUN: clang -analyze -checker-cfref -analyzer-store-basic -verify %s &&
-// RUN: clang -analyze -checker-cfref -analyzer-store-region -verify %s
+// RUN: clang -analyze -checker-cfref -analyzer-store=basic -verify %s &&
+// RUN: clang -analyze -checker-cfref -analyzer-store=region -verify %s
#include <stdint.h>