diff options
-rw-r--r-- | test/Analysis/xfail-no-outofbounds.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/Analysis/xfail-no-outofbounds.c b/test/Analysis/xfail-no-outofbounds.c deleted file mode 100644 index f2ee732c25..0000000000 --- a/test/Analysis/xfail-no-outofbounds.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: clang-cc -checker-cfref -analyze -analyzer-store=region -verify %s - -void f() { - long x = 0; - char *y = (char*) &x; - char c = y[0] + y[1] + y[2]; // no-warning -} |