blob: 95bd966cb02bbf1ccef508fa05a671d932e9327d [file] [log] [blame]
Zhongxing Xu40ab43b2010-04-20 05:48:57 +00001// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-store region -verify %s
2
3void f1() {
4 int *n1 = new int;
5 if (*n1) { // expected-warning {{Branch condition evaluates to a garbage value}}
6 }
7
8 int *n2 = new int(3);
9 if (*n2) { // no-warning
10 }
11}
12