aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/cswtch-2.c
blob: ec1d28fe32938eccdb342470fc66f42210a5aa73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-switchconv" } */

typedef enum { a = 5, b = 6, c = 7, d = 8, e = 9 } X;

int h1 (X x)
{
  switch (x) {
  case a:
  case b:
  case c:
  case d:
  case e:
    return 1;
  default:
    return 0;
    }
}

/* { dg-final { scan-tree-dump-times "CSWTCH" 0 "switchconv" } } */
/* { dg-final { cleanup-tree-dump "switchconv" } } */