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/comparison-implicit-casts.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/comparison-implicit-casts.cpp')
-rw-r--r-- | clang/test/Analysis/comparison-implicit-casts.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Analysis/comparison-implicit-casts.cpp b/clang/test/Analysis/comparison-implicit-casts.cpp index 96aa0ffe16b..a991d438cb4 100644 --- a/clang/test/Analysis/comparison-implicit-casts.cpp +++ b/clang/test/Analysis/comparison-implicit-casts.cpp @@ -1,5 +1,5 @@ -// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.cstring,debug.ExprInspection -analyzer-constraints=range -triple i386-apple-darwin9 -verify %s -// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.cstring,debug.ExprInspection -analyzer-constraints=range -triple x86_64-apple-darwin9 -verify %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.cstring,debug.ExprInspection -triple i386-apple-darwin9 -verify %s +// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.cstring,debug.ExprInspection -triple x86_64-apple-darwin9 -verify %s // This file runs in C++ mode so that the comparison type is 'bool', not 'int'. void clang_analyzer_eval(int); |