opnsense-src/test/Analysis/misc-ps-flat-store.c
2010-02-16 09:31:36 +00:00

10 lines
177 B
C

// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store=flat -verify %s
void f1() {
int x;
int *p;
x = 1;
p = 0;
if (x != 1)
*p = 1; // no-warning
}