blob: bb294b50dc01dc6038205d9e58cdb1cc06863f36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* { dg-do compile } */
/* { dg-options "-mfix-cortex-a53-835769" } */
int
foo (int i)
{
switch (i)
{
case 0:
case 2:
case 5:
return 0;
case 7:
case 11:
case 13:
return 1;
}
return -1;
}
|