aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/switch-4.c
blob: 5953ef34e9b5eb1da5f2cc5d9cb67050a6741870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* { dg-do compile { target { { x86_64-*-* aarch64-*-* ia64-*-* powerpc64-*-* } && lp64 } } } */
/* { dg-options "-O2 -fno-bit-tests -fdump-tree-switchlower1" } */

int global;

int foo (int x)
{
  switch (x) {
    case 0:
    case 10:
      return 1;
    case 20:
    case 30:
    case 62:
      return 2;
    case 1000:
    case 1010:
    case 1025 ... 1030:
      return 1;
    default:
      return 0;
  }
}

/* { dg-final { scan-tree-dump-not "BT:" "switchlower1" } } */