blob: 285569ee11bb46a806491d433299bed0c876d6ab [file] [log] [blame]
Jordan Rose05411592013-04-26 21:42:47 +00001// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core.BoolAssignment -analyzer-store=region -verify -std=c99 -Dbool=_Bool %s
2// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core.BoolAssignment -analyzer-store=region -verify -x c++ %s
Ryan Govostes55011c02012-02-11 16:32:09 +00003
Jordan Rosedc166282013-05-01 18:19:59 +00004// Test C++'s bool and C's _Bool.
5// FIXME: We stopped warning on these when SValBuilder got smarter about
6// casts to bool. Arguably, however, these conversions are okay; the result
7// is always 'true' or 'false'.
Ryan Govostes55011c02012-02-11 16:32:09 +00008
Jordan Rose05411592013-04-26 21:42:47 +00009void test_stdbool_initialization(int y) {
Jordan Rosedc166282013-05-01 18:19:59 +000010 bool constant = 2; // no-warning
Ryan Govostes55011c02012-02-11 16:32:09 +000011 if (y < 0) {
Jordan Rosedc166282013-05-01 18:19:59 +000012 bool x = y; // no-warning
Ryan Govostes55011c02012-02-11 16:32:09 +000013 return;
14 }
15 if (y > 1) {
Jordan Rosedc166282013-05-01 18:19:59 +000016 bool x = y; // no-warning
Ryan Govostes55011c02012-02-11 16:32:09 +000017 return;
18 }
19 bool x = y; // no-warning
20}
21
Jordan Rose05411592013-04-26 21:42:47 +000022void test_stdbool_assignment(int y) {
Ryan Govostes55011c02012-02-11 16:32:09 +000023 bool x = 0; // no-warning
24 if (y < 0) {
Jordan Rosedc166282013-05-01 18:19:59 +000025 x = y; // no-warning
Ryan Govostes55011c02012-02-11 16:32:09 +000026 return;
27 }
28 if (y > 1) {
Jordan Rosedc166282013-05-01 18:19:59 +000029 x = y; // no-warning
Ryan Govostes55011c02012-02-11 16:32:09 +000030 return;
31 }
32 x = y; // no-warning
33}
34
35// Test Objective-C's BOOL
36
37typedef signed char BOOL;
38
39void test_BOOL_initialization(int y) {
Jordan Rosedc166282013-05-01 18:19:59 +000040 BOOL constant = 2; // expected-warning {{Assignment of a non-Boolean value}}
Ryan Govostes55011c02012-02-11 16:32:09 +000041 if (y < 0) {
42 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}}
43 return;
44 }
Artem Dergachev91c45e82016-01-18 10:17:16 +000045 if (y > 200 && y < 250) {
46 // FIXME: Currently we are loosing this warning due to a SymbolCast in RHS.
47 BOOL x = y; // no-warning
48 return;
49 }
50 if (y >= 127 && y < 150) {
51 BOOL x = y; // expected-warning{{Assignment of a non-Boolean value}}
52 return;
53 }
Ryan Govostes55011c02012-02-11 16:32:09 +000054 if (y > 1) {
55 BOOL x = y; // expected-warning {{Assignment of a non-Boolean value}}
56 return;
57 }
58 BOOL x = y; // no-warning
59}
60
61void test_BOOL_assignment(int y) {
62 BOOL x = 0; // no-warning
63 if (y < 0) {
64 x = y; // expected-warning {{Assignment of a non-Boolean value}}
65 return;
66 }
67 if (y > 1) {
68 x = y; // expected-warning {{Assignment of a non-Boolean value}}
69 return;
70 }
71 x = y; // no-warning
72}
73
74
75// Test MacTypes.h's Boolean
76
77typedef unsigned char Boolean;
78
79void test_Boolean_initialization(int y) {
Jordan Rosedc166282013-05-01 18:19:59 +000080 Boolean constant = 2; // expected-warning {{Assignment of a non-Boolean value}}
Ryan Govostes55011c02012-02-11 16:32:09 +000081 if (y < 0) {
82 Boolean x = y; // expected-warning {{Assignment of a non-Boolean value}}
83 return;
84 }
85 if (y > 1) {
86 Boolean x = y; // expected-warning {{Assignment of a non-Boolean value}}
87 return;
88 }
89 Boolean x = y; // no-warning
90}
91
92void test_Boolean_assignment(int y) {
93 Boolean x = 0; // no-warning
94 if (y < 0) {
95 x = y; // expected-warning {{Assignment of a non-Boolean value}}
96 return;
97 }
98 if (y > 1) {
99 x = y; // expected-warning {{Assignment of a non-Boolean value}}
100 return;
101 }
102 x = y; // no-warning
103}