Lines Matching full:will
15 if (!b) {} // expected-warning {{address of array 'b' will always evaluate to 'true'}}
17 if (!c.x) {} // expected-warning {{address of array 'c.x' will always evaluate to 'true'}}
19 if (!str) {} // expected-warning {{address of array 'str' will always evaluate to 'true'}}
26 if (!array) { // expected-warning {{address of array 'array' will always evaluate to 'true'}}
39 if (!&pointer) { // expected-warning {{address of 'pointer' will always evaluate to 'true'}}
43 if (&pointer) { // expected-warning {{address of 'pointer' will always evaluate to 'true'}}
55 if (array) { } // expected-warning {{address of array 'array' will always evaluate to 'true'}}
57 if (!array) { } // expected-warning {{address of array 'array' will always evaluate to 'true'}}
61 array) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}}
64 array) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}}
67 !array) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}}
69 !array) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}}
71 if (array && // expected-warning {{address of array 'array' will always evaluate to 'true'}}
73 if (!array || // expected-warning {{address of array 'array' will always evaluate to 'true'}}
76 if (array || // expected-warning {{address of array 'array' will always evaluate to 'true'}}
77 (!array && array[0])) {} // expected-warning {{address of array 'array' will always evaluate to 'true'}}