mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 20:01:13 -05:00
10 lines
177 B
C
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
|
|
}
|