blob: b32063788f2386b50150cd470ac57168b627a2a7 [file] [log] [blame]
Argyrios Kyrtzidiscc05d512011-02-28 01:27:33 +00001// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -analyzer-checker=core -analyzer-store region -verify %s
Zhongxing Xu40ab43b2010-04-20 05:48:57 +00002
3void f1() {
Zhongxing Xu48fb3222010-04-21 02:22:25 +00004 int *n = new int;
5 if (*n) { // expected-warning {{Branch condition evaluates to a garbage value}}
Zhongxing Xu40ab43b2010-04-20 05:48:57 +00006 }
Zhongxing Xu48fb3222010-04-21 02:22:25 +00007}
Zhongxing Xu40ab43b2010-04-20 05:48:57 +00008
Zhongxing Xu48fb3222010-04-21 02:22:25 +00009void f2() {
10 int *n = new int(3);
11 if (*n) { // no-warning
Zhongxing Xu40ab43b2010-04-20 05:48:57 +000012 }
13}
14