repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr58978.c
blob
721801da16bc6d542d6493310ddb32c73e5df114
1
/* PR tree-optimization/58978 */
2
3
int
4
foo
(
int
x
)
5
{
6
switch
(
x
)
7
{
8
case
0
:
9
case
1
:
10
case
9
:
11
break
;
12
default
:
13
__builtin_unreachable
();
14
}
15
return
x
;
16
}