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
/
c-c++-common
/
pr88984.c
blob
48c62208f0fde69d5586838770e8b0e3e4f176c1
1
/* PR c++/88984 */
2
/* { dg-do run } */
3
4
void
5
foo
(
int
x
,
int
y
)
6
{
7
while
(
x
>
0
)
8
switch
(({
if
(
y
)
break
;
y
; }))
9
{
10
case
2
:
x
=
0
;
11
}
12
}
13
14
int
15
main
()
16
{
17
foo
(
1
,
1
);
18
return
0
;
19
}