diff options
author | Dominic Chen <d.c.ddcc@gmail.com> | 2016-12-01 17:06:39 +0000 |
---|---|---|
committer | Dominic Chen <d.c.ddcc@gmail.com> | 2016-12-01 17:06:39 +0000 |
commit | 1a154e082c94af8885e909f36e91d82ec657b403 (patch) | |
tree | 42d5c5c24dab898b5ef83907c32a6d1c210942be /clang/test/Analysis/CFNumber.c | |
parent | e59a8351d0705c084d53036bf0e8b79a67289739 (diff) | |
download | bcm5719-llvm-1a154e082c94af8885e909f36e91d82ec657b403.tar.gz bcm5719-llvm-1a154e082c94af8885e909f36e91d82ec657b403.zip |
[analyzer] Drop explicit mention of range constraint solver
Summary: The basic constraint solver was dropped in rL162384, leaving the range constraint solver as the default and only constraint solver. Explicitly specifying it is unnecessary, and makes it difficult to test with other solver backends.
Reviewers: zaks.anna, dcoughlin
Subscribers: cfe-commits
Differential Revision: https://reviews.llvm.org/D26694
llvm-svn: 288372
Diffstat (limited to 'clang/test/Analysis/CFNumber.c')
-rw-r--r-- | clang/test/Analysis/CFNumber.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/CFNumber.c b/clang/test/Analysis/CFNumber.c index ec966ee4d6c..d7dd951b93c 100644 --- a/clang/test/Analysis/CFNumber.c +++ b/clang/test/Analysis/CFNumber.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.coreFoundation.CFNumber,osx.cocoa.RetainCount -analyzer-store=region -analyzer-constraints=range -verify -triple x86_64-apple-darwin9 %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,osx.coreFoundation.CFNumber,osx.cocoa.RetainCount -analyzer-store=region -verify -triple x86_64-apple-darwin9 %s typedef signed long CFIndex; typedef const struct __CFAllocator * CFAllocatorRef; |