URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [pr11492.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR11492 */ /* { dg-do compile } */ /* { dg-options "-Wsign-compare" } */ int main( void ) { unsigned int a; unsigned char b; for ( a = 0, b = 2; a > b * 100; a++ ) /* { dg-bogus "comparison between signed and unsigned integer" "" } */ { ; } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log