Lines Matching full:when
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}}
55 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
74 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
82 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
90 return x; // expected-warning{{variable 'x' may be uninitialized when used here}}
94 for (unsigned i ; n ; ++i) ; // expected-warning{{variable 'i' is uninitialized when used here}} expected-note{{initialize the variable 'i' to silence this warning}}
115 int x = x; // expected-warning {{variable 'x' is uninitialized when used within its own initialization}}
131 *x = 1; // expected-warning{{variable 'x' is uninitialized when used here}}
191 return val; // expected-warning{{variable 'val' may be uninitialized when used here}}
196 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
202 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
213 return sizeof(int[len]); // expected-warning{{variable 'len' is uninitialized when used here}}
218 (void) ^{ (void) x; }; // expected-warning{{variable 'x' is uninitialized when captured by block}}
244 return x; // expected-warning{{variable 'x' is uninitialized when used here}}
259 goto *pc; // expected-warning{{variable 'pc' is uninitialized when used here}}
286 int z = x + y; // expected-warning {{variable 'y' is uninitialized when used here}}
293 return x ? 1 : y; // expected-warning {{variable 'y' is uninitialized when used here}}
312 test43_aux(x++); // expected-warning {{variable 'x' is uninitialized when used here}}
320 x += y; // expected-warning {{variable 'y' is uninitialized when used here}}
334 int j = i ? : 1; // expected-warning {{variable 'i' is uninitialized when used here}}
373 return x; // expected-warning {{variable 'x' may be uninitialized when used here}}
378 int y = (x); // expected-warning {{variable 'x' is uninitialized when used here}}
392 *len += new_len; // expected-warning {{variable 'new_len' may be uninitialized when used here}}
427 for (; i < 10000; ++i) // expected-warning {{variable 'i' is uninitialized when used here}}
435 UNINIT(int, a, b); // expected-warning {{variable 'a' is uninitialized when used here}} \
438 ASSIGN(int, c, d); // expected-warning {{variable 'c' is uninitialized when used here}}
521 ++x; // expected-warning {{variable 'x' is uninitialized when used here}}