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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
BUG5.c
blob
9bed7136f59ce70d6928a93f2021d0fa98248cb0
1
enum
bar
2
{
3
one
,
4
two
5
};
6
7
enum
bar foo
;
8
9
void
bar
()
10
{
11
switch
(
foo
)
12
{
13
case
one
:
14
case
two
:
15
printf
(
"one to two
\n
"
);
16
break
;
17
}
18
}