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.5.1/] [gcc/] [testsuite/] [gcc.dg/] [compare8.c] - Rev 300
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-Wsign-compare" } */ int f(unsigned short a1, unsigned short a2, unsigned int b) { return ((a1+a2)|5) > b ? 2 : 3; /* { dg-bogus "signed and unsigned" } */ } int g(unsigned short a1, unsigned short a2, unsigned int b) { return ((a1+a2)&5) > b ? 2 : 3; /* { dg-bogus "signed and unsigned" } */ } int h(unsigned short a1, unsigned short a2, unsigned int b) { return ((a1+a2)^5) > b ? 2 : 3; /* { dg-bogus "signed and unsigned" } */ }
Go to most recent revision | Compare with Previous | Blame | View Log