diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-08-22 19:47:13 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-08-22 19:47:13 +0000 |
commit | a056d62961b96403b85e28255bbf8e7edfd0d88c (patch) | |
tree | 75cc530d88007a0d9fd4593603bdbefac573a341 /clang/test/Analysis/dead-stores.cpp | |
parent | e07728b936471ad995bd67ab80cf9bea2fce2644 (diff) | |
download | bcm5719-llvm-a056d62961b96403b85e28255bbf8e7edfd0d88c.tar.gz bcm5719-llvm-a056d62961b96403b85e28255bbf8e7edfd0d88c.zip |
Remove BasicConstraintManager. It hasn't been in active service for a while.
As part of this change, I discovered that a few of our tests were not testing
the RangeConstraintManager. Luckily all of those passed when I moved them
over to use that constraint manager.
llvm-svn: 162384
Diffstat (limited to 'clang/test/Analysis/dead-stores.cpp')
-rw-r--r-- | clang/test/Analysis/dead-stores.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/Analysis/dead-stores.cpp b/clang/test/Analysis/dead-stores.cpp index 43d8796ce09..67bc8b5a232 100644 --- a/clang/test/Analysis/dead-stores.cpp +++ b/clang/test/Analysis/dead-stores.cpp @@ -1,5 +1,4 @@ // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -analyze -analyzer-checker=deadcode.DeadStores -verify -Wno-unreachable-code %s -// RUN: %clang_cc1 -fcxx-exceptions -fexceptions -analyze -analyzer-store=region -analyzer-constraints=basic -analyzer-checker=deadcode.DeadStores -verify -Wno-unreachable-code %s // RUN: %clang_cc1 -fcxx-exceptions -fexceptions -analyze -analyzer-store=region -analyzer-constraints=range -analyzer-checker=deadcode.DeadStores -verify -Wno-unreachable-code %s //===----------------------------------------------------------------------===// |