aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20030323-1.c
blob: 8ea602deee3595696af6eef9a506a131cc51409f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* PR c/10178.  The following code would ICE because we didn't check for
   overflow when computing the range of the switch-statment, and therefore
   decided it could be implemented using bit-tests.  */

int
banana(long citron)
{
  switch (citron) {
    case 0x80000000:
    case 0x40000:
    case 0x40001:
      return 1;
      break;
  }
  return 0;
}