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
2018-04-30 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr68455.c
blob
6b46b3066db0d398b756fc35d16655e370a84767
1
/* PR tree-optimization/68455 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2" } */
4
5
int
r
;
6
int
n
;
7
8
void
9
fn1
(
void
)
10
{
11
int
i
;
12
13
for
(
i
=
0
;
i
<
1
; ++
i
)
14
{
15
unsigned short int
u
;
16
if
(
u
<
n
)
17
r
=
1
/
n
;
18
}
19
}