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
Small ChangeLog tweak.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr68906.c
blob
8c89bbd2ea404450378241dac44e3b128480e874
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
int
a
;
5
volatile
int
b
;
6
short
c
,
d
;
7
int
8
fn1
()
9
{
10
int
e
;
11
for
(;;)
12
{
13
a
=
3
;
14
if
(
c
)
15
continue
;
16
e
=
0
;
17
for
(;
e
> -
30
;
e
--)
18
if
(
b
)
19
{
20
int
f
=
e
;
21
return
d
;
22
}
23
}
24
}