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-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr83922.c
blob
8f99f7724bff594d6d223206a8355dbbdd34c877
1
/* { dg-options "-O -ftree-vectorize" } */
2
3
int
j4
;
4
5
void
6
k1
(
int
ak
)
7
{
8
while
(
ak
<
1
)
9
{
10
int
ur
;
11
12
for
(
ur
=
0
;
ur
<
2
; ++
ur
)
13
{
14
++
j4
;
15
if
(
j4
!=
0
)
16
j4
=
0
;
17
}
18
19
++
ak
;
20
}
21
}