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 | e00c981febca09704222c9aedd9f21486fd9c81c (patch) | |
tree | 3a0f4e36ecc1b86c55c2cbf96220969afa661598 | |
parent | ede2ce71aa5a224257b10b75a295c515cbb2ac9a (diff) | |
download | bcm5719-llvm-e00c981febca09704222c9aedd9f21486fd9c81c.tar.gz bcm5719-llvm-e00c981febca09704222c9aedd9f21486fd9c81c.zip |
remove duplicated test cast.
llvm-svn: 75329
-rw-r--r-- | clang/test/Analysis/xfail-no-outofbounds.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/test/Analysis/xfail-no-outofbounds.c b/clang/test/Analysis/xfail-no-outofbounds.c deleted file mode 100644 index f2ee732c257..00000000000 --- a/clang/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 -} |