diff options
author | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-07-11 02:33:35 +0000 |
---|---|---|
committer | Zhongxing Xu <xuzhongxing@gmail.com> | 2009-07-11 02:33:35 +0000 |
commit | e07c57947599aa30e96b64626f96ce6c059783c4 (patch) | |
tree | 654bea2efcb2c1d56b1bb641c353e8affa88cbab | |
parent | 3591b1ae0a48e7a5ddc878bf334165ff1aaa56fc (diff) |
remove duplicated test cast.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75329 91177308-0d34-0410-b5e6-96231b3b80d8
-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 -} |