URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [compare6.c] - Rev 645
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR c/2098 */ /* Test for a warning on comparison on out-of-range data. */ /* { dg-do compile { xfail c4x-*-* } } */ /* { dg-options "-Wall" } */ signed char sc; unsigned char uc; void foo() { if (sc == 10000) return; /* { dg-warning "always false" "signed" } */ if (uc == 10000) return; /* { dg-warning "always false" "unsigned" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log