blob: 945d2823955c4b2b2230f5808e5a278b576414a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* PR c/2098 */
/* Test for a warning on comparison on out-of-range data. */
/* { dg-do compile } */
/* { dg-options "-Wtype-limits" } */
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" } */
}
|