Lines Matching full:address
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'}}
47 if (&pointer == NULL) {} // expected-warning {{comparison of address of 'pointer' equal to a null pointer is always false}}
49 if (&pointer != NULL) {} // expected-warning {{comparison of address of 'pointer' not equal to a null pointer is always 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'}}
90 x = b ? 1 : 0; // expected-warning {{address of array}}
91 x = c.x ? 1 : 0; // expected-warning {{address of array}}
92 x = str ? 1 : 0; // expected-warning {{address of array}}
93 x = array ? 1 : 0; // expected-warning {{address of array}}
94 x = &x ? 1 : 0; // expected-warning {{address of 'x'}}