]> granicus.if.org Git - clang/commitdiff
remove duplicated test cast.
authorZhongxing Xu <xuzhongxing@gmail.com>
Sat, 11 Jul 2009 02:33:35 +0000 (02:33 +0000)
committerZhongxing Xu <xuzhongxing@gmail.com>
Sat, 11 Jul 2009 02:33:35 +0000 (02:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75329 91177308-0d34-0410-b5e6-96231b3b80d8

test/Analysis/xfail-no-outofbounds.c [deleted file]

diff --git a/test/Analysis/xfail-no-outofbounds.c b/test/Analysis/xfail-no-outofbounds.c
deleted file mode 100644 (file)
index f2ee732..0000000
+++ /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
-}