blob: fbeb6a0aedd969da6bd4e1d0fb8d677fc32bc2a1 [file] [log] [blame]
/* 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" } */
}