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/reference.cpp | |
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/reference.cpp')
-rw-r--r-- | clang/test/Analysis/reference.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/reference.cpp b/clang/test/Analysis/reference.cpp index cd0202ebcb3..951079d43e4 100644 --- a/clang/test/Analysis/reference.cpp +++ b/clang/test/Analysis/reference.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -analyzer-store=region -analyzer-constraints=range -verify -Wno-null-dereference -Wno-tautological-undefined-compare %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core,debug.ExprInspection -analyzer-store=region -verify -Wno-null-dereference -Wno-tautological-undefined-compare %s void clang_analyzer_eval(bool); |