diff options
-rw-r--r-- | test/Analysis/no-outofbounds-basicstore.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/Analysis/no-outofbounds-basicstore.c b/test/Analysis/no-outofbounds-basicstore.c index b0fcf1959c..7aeae7e11d 100644 --- a/test/Analysis/no-outofbounds-basicstore.c +++ b/test/Analysis/no-outofbounds-basicstore.c @@ -1,5 +1,10 @@ // RUN: clang-cc -checker-cfref -analyze -analyzer-store=basic -verify %s && -// RUN: clang-cc -checker-cfref -analyze -analyzer-store=basic-old-cast -verify %s +// RUN: clang-cc -checker-cfref -analyze -analyzer-store=basic-old-cast -verify %s && +// RUN: clang-cc -checker-cfref -analyze -analyzer-store=region -verify %s + +//===----------------------------------------------------------------------===// +// This file tests cases where we should not flag out-of-bounds warnings. +//===----------------------------------------------------------------------===// void f() { long x = 0; |