URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [gcc.dg/] [compare8.c] - Rev 12
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" } */ }