aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr48374.c
blob: 24826d5f885e1bb894f499e5c6d855df4b621859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* { dg-do compile { target powerpc*-*-* ia64-*-* x86_64-*-* } } */
/* { dg-options "-O -fschedule-insns2 -fsel-sched-pipelining -fsel-sched-pipelining-outer-loops -fselective-scheduling2 --param max-sched-extend-regions-iters=2"  } */

void foo (int y)
{
  switch (y)
    {
    case 3:
    case 5:
    case 7:
    case 11:
      break;
    default:
      __builtin_unreachable ();
    }
}