mirror of
https://github.com/intel/llvm.git
synced 2026-01-23 07:58:23 +08:00
11 lines
177 B
C
11 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
|
|
}
|