• Home
  • Raw
  • Download

Lines Matching full:without

15 …if (x = 7) {} // expected-warning {{using the result of an assignment as a condition without paren…  in test()
20 …} while (x = 7); // expected-warning {{using the result of an assignment as a condition without pa… in test()
25 …while (x = 7) {} // expected-warning {{using the result of an assignment as a condition without pa… in test()
30 …for (; x = 7; ) {} // expected-warning {{using the result of an assignment as a condition without in test()
35 …if (p = p) {} // expected-warning {{using the result of an assignment as a condition without paren… in test()
40 …} while (p = p); // expected-warning {{using the result of an assignment as a condition without pa… in test()
45 …while (p = p) {} // expected-warning {{using the result of an assignment as a condition without pa… in test()
49 …for (; p = p; ) {} // expected-warning {{using the result of an assignment as a condition without in test()
61 …) {} // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
66 …()); // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
71 …) {} // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
75 …) {} // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
81 …if (a = b + b) {} // expected-warning {{using the result of an assignment as a condition without p… in test()
86 … b); // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
91 …) {} // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
95 …) {} // expected-warning {{using the result of an assignment as a condition without parentheses}} \ in test()
101 …if (x |= 2) {} // expected-warning {{using the result of an assignment as a condition without pare… in test()
105 …if (a |= b) {} // expected-warning {{using the result of an assignment as a condition without pare… in test()