repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (160224:163495).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
no-tree-pre-pr45241.c
blob
289a930cd7babfb9ee09311f3f63c66f9072a679
1
/* PR tree-optimization/45241 */
2
/* { dg-do compile } */
3
/* { dg-options "-ftree-vectorize" } */
4
5
int
6
foo
(
short
x
)
7
{
8
short
i
,
y
;
9
int
sum
;
10
11
for
(
i
=
0
;
i
<
x
;
i
++)
12
y
=
x
*
i
;
13
14
for
(
i
=
x
;
i
>
0
;
i
--)
15
sum
+=
y
;
16
17
return
sum
;
18
}
19
20
/* { dg-final { cleanup-tree-dump "vect" } } */