Lines Matching refs:other
302 void test7(unsigned long other) {
303 // Common unsigned, other unsigned, constant unsigned
304 (void)((unsigned)other != (unsigned long)(0x1ffffffff)); // expected-warning{{true}}
305 (void)((unsigned)other != (unsigned long)(0xffffffff));
306 (void)((unsigned long)other != (unsigned)(0x1ffffffff));
307 (void)((unsigned long)other != (unsigned)(0xffffffff));
309 // Common unsigned, other signed, constant unsigned
310 (void)((int)other != (unsigned long)(0xffffffffffffffff)); // expected-warning{{different signs}}
311 (void)((int)other != (unsigned long)(0x00000000ffffffff)); // expected-warning{{true}}
312 (void)((int)other != (unsigned long)(0x000000000fffffff));
313 (void)((int)other < (unsigned long)(0x00000000ffffffff)); // expected-warning{{different signs}}
314 (void)((int)other == (unsigned)(0x800000000));
316 // Common unsigned, other unsigned, constant signed
317 (void)((unsigned long)other != (int)(0xffffffff)); // expected-warning{{different signs}}
319 // Common unsigned, other signed, constant signed
322 // Common signed, other signed, constant signed
323 (void)((int)other != (long)(0xffffffff)); // expected-warning{{true}}
324 (void)((int)other != (long)(0xffffffff00000000)); // expected-warning{{true}}
325 (void)((int)other != (long)(0xfffffff));
326 (void)((int)other != (long)(0xfffffffff0000000));
328 // Common signed, other signed, constant unsigned
329 (void)((int)other != (unsigned char)(0xffff));
330 (void)((int)other != (unsigned char)(0xff));
332 // Common signed, other unsigned, constant signed
333 (void)((unsigned char)other != (int)(0xff));
334 (void)((unsigned char)other != (int)(0xffff)); // expected-warning{{true}}
336 // Common signed, other unsigned, constant unsigned
337 (void)((unsigned char)other != (unsigned short)(0xff));
338 (void)((unsigned char)other != (unsigned short)(0x100)); // expected-warning{{true}}
339 (void)((unsigned short)other != (unsigned char)(0xff));