aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/misc-ps-flat-store.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/Analysis/misc-ps-flat-store.c')
-rw-r--r--test/Analysis/misc-ps-flat-store.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/Analysis/misc-ps-flat-store.c b/test/Analysis/misc-ps-flat-store.c
deleted file mode 100644
index e6369cbfb079..000000000000
--- a/test/Analysis/misc-ps-flat-store.c
+++ /dev/null
@@ -1,10 +0,0 @@
-// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=flat -verify %s
-
-void f1() {
- int x;
- int *p;
- x = 1;
- p = 0;
- if (x != 1)
- *p = 1; // no-warning
-}