Lines Matching full:warning
10 return x; // no-warning
16 return x; // no-warning
29 A *a; // expected-note{{initialize the variable 'a' to silence this warning}}
30 (void)typeid(*a); // expected-warning{{variable 'a' is uninitialized when used here}}
50 return x; // no-warning
53 unsigned x; // expected-note{{initialize the variable 'x' to silence this warning}}
58 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
66 return a; // expected-warning{{variable 'a' is uninitialized when used here}}
76 return x + y; // no-warning
105 (void)static_cast<float>(x); // no-warning
117 RDar9251392_bar(msg); // no-warning
125 int y = (int&)x; // no-warning
129 int x; // expected-note {{initialize the variable 'x' to silence this warning}}
130 int y = (int&)x; // expected-warning {{uninitialized when used here}}
136 int y = (float &)x; // no-warning
140 int x; // expected-note {{initialize the variable 'x' to silence this warning}}
141 int y = (float &)x; // expected-warning {{uninitialized when used here}}
148 return n; // expected-warning {{uninitialized when used here}}