Lines Matching full:here
8 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}}
30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}}
36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}}
44 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
48 int x = x; // expected-note{{variable 'x' is declared here}}
51 // Warn with "may be uninitialized" here (not "is uninitialized"), since the
53 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
72 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
80 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
88 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
92 for (unsigned i ; n ; ++i) ; // expected-warning{{variable 'i' is uninitialized when used here}} expected-note{{initialize the variable 'i' to silence this warning}}
111 // Warn here with the self-init, since it does result in a use of
129 *x = 1; // expected-warning{{variable 'x' is uninitialized when used here}}
154 return z; // expected-warning{{variable 'z' may be uninitialized when used here}}
161 return z; // expected-warning{{variable 'z' may be uninitialized when used here}}
189 return val; // expected-warning{{variable 'val' may be uninitialized when used here}}
194 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
200 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
211 return sizeof(int[len]); // expected-warning{{variable 'len' is uninitialized when used here}}
242 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
257 goto *pc; // expected-warning{{variable 'pc' is uninitialized when used here}}
284 int z = x + y; // expected-warning {{variable 'y' is uninitialized when used here}}
291 return x ? 1 : y; // expected-warning {{variable 'y' is uninitialized when used here}}
297 return y; // expected-warning {{variable 'y' may be uninitialized when used here}}
309 test43_aux(x++); // expected-warning {{variable 'x' is uninitialized when used here}}
317 x += y; // expected-warning {{variable 'y' is uninitialized when used here}}
331 int j = i ? : 1; // expected-warning {{variable 'i' is uninitialized when used here}}
370 return x; // expected-warning {{variable 'x' may be uninitialized when used here}}
375 int y = (x); // expected-warning {{variable 'x' is uninitialized when used here}}
389 *len += new_len; // expected-warning {{variable 'new_len' may be uninitialized when used here}}
424 for (; i < 10000; ++i) // expected-warning {{variable 'i' is uninitialized when used here}}