summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr11492.c
blob: cf17712dde12ee1b8015c938fb859290df2bab47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* PR11492 */
/* { dg-do compile } */
/* { dg-options "-Wsign-compare" } */
int main( void )
{
  unsigned int a;
  unsigned char b;
  for ( a = 0, b = 2; a > b * 100; a++ ) /* { dg-bogus "comparison between signed and unsigned integer" } */
    { ; }

  return 0;
}