summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/warning10.C
blob: 8dbf5ed321796b2c1f26c18f1a98d49d7eec54ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Don't warn about these comparisons.
// Build don't link:
// Special g++ Options: -W -Wall

struct A {
  unsigned int b : 28;
};

int f (int i, unsigned char u, A a, unsigned long ul)
{
  if ((u & 0x10) == 0)
    return 1;
  if (i == 0U)
    return 1;
  if (a.b > ul)
    return 1;

  return 0;
}