Home | History | Annotate | Download | only in SemaCXX

Lines Matching full:address

21   b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
22 expected-note {{prefix with the address-of operator to silence this warning}}
23 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
24 expected-note {{prefix with the address-of operator to silence this warning}}
25 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
26 expected-note {{prefix with the address-of operator to silence this warning}}
27 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
28 expected-note {{prefix with the address-of operator to silence this warning}}
29 b = f5; // expected-warning {{address of function 'f5' will always evaluate to 'true'}} \
30 expected-note {{prefix with the address-of operator to silence this warning}} \
32 b = f6; // expected-warning {{address of function 'f6' will always evaluate to 'true'}} \
33 expected-note {{prefix with the address-of operator to silence this warning}}