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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
case-const-1.c
blob
ba39d09616b02514784fcfa23efefc1cc16fc72b
1
/* Test for case labels not integer constant expressions but folding
2
to integer constants (used in Linux kernel, PR 39613). */
3
/* { dg-do compile } */
4
/* { dg-options "" } */
5
6
extern
int
i
;
7
void
8
f
(
int
c
)
9
{
10
switch
(
c
)
11
{
12
case
(
1
?
1
:
i
):
13
;
14
}
15
}