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-11-28 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr56350.c
blob
899a507ee8bc8c5b96457bbd0e3e509800a1d370
1
/* PR tree-optimization/56350 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -ftree-vectorize" } */
4
5
int
a
,
b
,
c
;
6
7
void
8
f
(
void
)
9
{
10
for
(;
c
;
c
++)
11
for
(
b
=
0
;
b
<
2
;
b
++)
12
a
/=
8
;
13
}