rt_gccstream/gcc/testsuite/gcc.dg/compare8.c

22 lines
486 B
C

/* { 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" } */
}