• Home
  • Raw
  • Download

Lines Matching full:different

12 …      (a == (unsigned long) b) +  // expected-warning {{comparison of integers of different signs}}  in test0()
16 ((long) a == b) + // expected-warning {{comparison of integers of different signs}} in test0()
17 ((int) a == b) + // expected-warning {{comparison of integers of different signs}} in test0()
18 ((short) a == b) + // expected-warning {{comparison of integers of different signs}} in test0()
19 ((signed char) a == b) + // expected-warning {{comparison of integers of different signs}} in test0()
20 …(long) a == (unsigned long) b) + // expected-warning {{comparison of integers of different signs}} in test0()
21 … ((int) a == (unsigned int) b) + // expected-warning {{comparison of integers of different signs}} in test0()
24 … (a < (unsigned long) b) + // expected-warning {{comparison of integers of different signs}} in test0()
28 ((long) a < b) + // expected-warning {{comparison of integers of different signs}} in test0()
29 ((int) a < b) + // expected-warning {{comparison of integers of different signs}} in test0()
30 ((short) a < b) + // expected-warning {{comparison of integers of different signs}} in test0()
31 ((signed char) a < b) + // expected-warning {{comparison of integers of different signs}} in test0()
32 …((long) a < (unsigned long) b) + // expected-warning {{comparison of integers of different signs}} in test0()
33 … ((int) a < (unsigned int) b) + // expected-warning {{comparison of integers of different signs}} in test0()
76 … (a < (unsigned long) B) + // expected-warning {{comparison of integers of different signs}} in test0()
84 …((long) a < (unsigned long) B) + // expected-warning {{comparison of integers of different signs}} in test0()
85 … ((int) a < (unsigned int) B) + // expected-warning {{comparison of integers of different signs}} in test0()
128 … (a < (unsigned long) C) + // expected-warning {{comparison of integers of different signs}} in test0()
136 …((long) a < (unsigned long) C) + // expected-warning {{comparison of integers of different signs}} in test0()
137 … ((int) a < (unsigned int) C) + // expected-warning {{comparison of integers of different signs}} in test0()
180 … (a < (unsigned long) 0x80000) + // expected-warning {{comparison of integers of different signs}} in test0()
188 …) a < (unsigned long) 0x80000) + // expected-warning {{comparison of integers of different signs}} in test0()
189 …t) a < (unsigned int) 0x80000) + // expected-warning {{comparison of integers of different signs}} in test0()
216 // -Wsign-compare should not warn when ?: operands have different signedness.
234 …void (s < A); // expected-warning{{comparison of integers of different signs: 'short' and 'const u… in test4()
235 …void (s > A); // expected-warning{{comparison of integers of different signs: 'short' and 'const u… in test4()
236 …void (s <= A); // expected-warning{{comparison of integers of different signs: 'short' and 'const … in test4()
237 …void (s >= A); // expected-warning{{comparison of integers of different signs: 'short' and 'const … in test4()
246 …void (s < B); // expected-warning{{comparison of integers of different signs: 'short' and 'const u… in test4()
247 …void (s > B); // expected-warning{{comparison of integers of different signs: 'short' and 'const u… in test4()
248 …void (s <= B); // expected-warning{{comparison of integers of different signs: 'short' and 'const … in test4()
249 …void (s >= B); // expected-warning{{comparison of integers of different signs: 'short' and 'const … in test4()
250 …void (s == B); // expected-warning{{comparison of integers of different signs: 'short' and 'const … in test4()
251 …void (s != B); // expected-warning{{comparison of integers of different signs: 'short' and 'const … in test4()
310 (void)((int)other != (unsigned long)(0xffffffffffffffff)); // expected-warning{{different signs}} in test7()
313 (void)((int)other < (unsigned long)(0x00000000ffffffff)); // expected-warning{{different signs}} in test7()
317 (void)((unsigned long)other != (int)(0xffffffff)); // expected-warning{{different signs}} in test7()