Home | History | Annotate | Download | only in Sema

Lines Matching full:condition

42   if (y) // expected-warning{{variable 'x' is used uninitialized whenever 'if' condition is false}} \
43 // expected-note{{remove the 'if' if its condition is always true}}
155 if ((test19_aux1() + test19_aux2() && test19_aux1()) || test19_aux3(&z)) // expected-warning {{variable 'z' is used uninitialized whenever '||' condition is true}} expected-note {{remove the '||' if its condition is always false}}
162 if ((x && y) || test19_aux3(&z) || test19_aux2()) // expected-warning {{variable 'z' is used uninitialized whenever '||' condition is true}} expected-note {{remove the '||' if its condition is always false}}
298 if (x) y = 1; // expected-warning{{variable 'y' is used uninitialized whenever 'if' condition is false}} \
299 // expected-note{{remove the 'if' if its condition is always true}}
365 switch (a || b) { // expected-warning {{switch condition has boolean value}}
424 // Test uninitialized value used in loop condition.