diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-07-10 00:41:58 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-07-10 00:41:58 +0000 |
commit | f66557978e9f0a288add6ab385a52f66ed474a49 (patch) | |
tree | aa901117061644cfd1b9438a12307f73e35d9dd8 /clang/test/Analysis/CGColorSpace.c | |
parent | 98f741bd77af14bb04b46117f255712a50a15fd8 (diff) | |
download | bcm5719-llvm-f66557978e9f0a288add6ab385a52f66ed474a49.tar.gz bcm5719-llvm-f66557978e9f0a288add6ab385a52f66ed474a49.zip |
Switch BasicStoreManager to use the new CastRegion implementation by default,
and replace the 'clang-cc' option '-analyzer-store=basic-new-cast' with
'-analyzer-store=basic-old-cast'. We'll keep the old CastRegion implementation
around for a little while for regression testing.
llvm-svn: 75209
Diffstat (limited to 'clang/test/Analysis/CGColorSpace.c')
-rw-r--r-- | clang/test/Analysis/CGColorSpace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Analysis/CGColorSpace.c b/clang/test/Analysis/CGColorSpace.c index ca3003ba891..10b5150cd96 100644 --- a/clang/test/Analysis/CGColorSpace.c +++ b/clang/test/Analysis/CGColorSpace.c @@ -1,7 +1,7 @@ // RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic -analyzer-constraints=basic -verify %s && -// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic-new-cast -analyzer-constraints=basic -verify %s && +// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic-old-cast -analyzer-constraints=basic -verify %s && // RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic -analyzer-constraints=range -verify %s && -// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic-new-cast -analyzer-constraints=range -verify %s && +// RUN: clang-cc -analyze -checker-cfref -analyzer-store=basic-old-cast -analyzer-constraints=range -verify %s && // RUN: clang-cc -analyze -checker-cfref -analyzer-store=region -analyzer-constraints=basic -verify %s && // RUN: clang-cc -analyze -checker-cfref -analyzer-store=region -analyzer-constraints=range -verify %s |