Lines Matching full:note
7 int x; // expected-note {{variable}} in test_if_false()
9 // expected-note {{remove the 'if' if its condition is always true}} in test_if_false()
11 return x; // expected-note {{uninitialized use}} in test_if_false()
19 int x; // expected-note {{variable}} in test_if_true()
21 // expected-note {{remove the 'if' if its condition is always false}} in test_if_true()
23 return x; // expected-note {{uninitialized use}} in test_if_true()
31 int x; // expected-note {{variable}} in test_while_false()
33 // expected-note {{remove the condition if it is always true}} in test_while_false()
39 return x; // expected-note {{uninitialized use}} in test_while_false()
47 int x; // expected-note {{variable}} in test_while_true()
49 // expected-note {{remove the condition if it is always false}} in test_while_true()
51 return x; // expected-note {{uninitialized use}} in test_while_true()
62 int x; // expected-note {{variable}} in test_do_while_false()
69 // expected-note {{remove the condition if it is always true}} in test_do_while_false()
70 return x; // expected-note {{uninitialized use}} in test_do_while_false()
78 int x; // expected-note {{variable}} in test_do_while_true()
82 return x; // expected-note {{uninitialized use}} in test_do_while_true()
85 // expected-note {{remove the condition if it is always false}} in test_do_while_true()
95 int x; // expected-note {{variable}} in test_for_false()
98 // expected-note {{remove the condition if it is always true}} in test_for_false()
105 return x; // expected-note {{uninitialized use}} in test_for_false()
113 int x; // expected-note {{variable}} in test_for_true()
117 // expected-note {{remove the condition if it is always false}} in test_for_true()
120 return x; // expected-note {{uninitialized use}} in test_for_true()
148 int x; // expected-note {{variable}} in test_for_range_true()
154 return x; // expected-note {{uninitialized use}} in test_for_range_true()
162 int x; // expected-note {{variable}} in test_conditional_false()
165 // expected-note {{remove the '?:' if its condition is always true}} in test_conditional_false()
167 return x; // expected-note {{uninitialized use}} in test_conditional_false()
175 int x; // expected-note {{variable}} in test_conditional_true()
178 // expected-note {{remove the '?:' if its condition is always false}} in test_conditional_true()
180 return x; // expected-note {{uninitialized use}} in test_conditional_true()
188 int x; // expected-note {{variable}} in test_logical_and_false()
190 // expected-note {{remove the '&&' if its condition is always true}} in test_logical_and_false()
192 return x; // expected-note {{uninitialized use}} in test_logical_and_false()
200 int x; // expected-note {{variable}} in test_logical_and_true()
202 // expected-note {{remove the '&&' if its condition is always false}} in test_logical_and_true()
206 return x; // expected-note {{uninitialized use}} in test_logical_and_true()
214 int x; // expected-note {{variable}} in test_logical_or_false()
216 // expected-note {{remove the '||' if its condition is always true}} in test_logical_or_false()
220 return x; // expected-note {{uninitialized use}} in test_logical_or_false()
228 int x; // expected-note {{variable}} in test_logical_or_true()
230 // expected-note {{remove the '||' if its condition is always false}} in test_logical_or_true()
232 return x; // expected-note {{uninitialized use}} in test_logical_or_true()
240 int x; // expected-note {{variable}} in test_switch_case()
248 return x; // expected-note {{uninitialized use}} in test_switch_case()
256 int x; // expected-note {{variable}} in test_switch_default()
267 return x; // expected-note {{uninitialized use}} in test_switch_default()
314 int x; // expected-note {{variable}} in test_multiple_notes()
319 // expected-note {{remove the 'if' if its condition is always true}} in test_multiple_notes()
325 // expected-note {{remove the 'if' if its condition is always true}} in test_multiple_notes()
328 return x; // expected-note 2{{uninitialized use}} in test_multiple_notes()
363 …int x; // expected-note {{variable}} expected-warning {{used uninitialized whenever function 'test… in test_null_pred_succ()
366 if (x) // expected-note {{use}} in test_null_pred_succ()
375 int x; // expected-note {{variable}} in PR13360()
376 …ing {{variable 'x' is used uninitialized whenever 'if' condition is true}} expected-note {{remove}} in PR13360()
383 return x; // expected-note {{uninitialized use occurs here}} in PR13360()
391 …int x; // expected-note {{variable}} expected-warning {{used uninitialized whenever function 'test… in test_jump_init()
393 while (x) x = 0; // expected-note {{use}} in test_jump_init()
397 …int x; // expected-note {{variable}} expected-warning {{used uninitialized whenever function 'PR16… in PR16054()
398 while (x != 0) { // expected-note {{use}} in PR16054()
405 …variable 'k' is used uninitialized whenever its declaration is reached}} expected-note {{variable}} in test_loop_uninit()
407 k = k + 1; // expected-note {{use}} in test_loop_uninit()