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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
bb-slp-div-2.c
blob
dd17e8c1c20670d974cd2726160639dc0c6b5c9e
1
/* { dg-do compile } */
2
3
int
x
[
4
],
y
[
4
],
z
[
4
];
4
5
void
6
f
(
void
)
7
{
8
x
[
0
] +=
y
[
0
] /
z
[
0
] *
2
;
9
x
[
1
] +=
y
[
1
] /
z
[
1
] *
2
;
10
x
[
2
] +=
y
[
2
] /
z
[
2
] *
2
;
11
x
[
3
] +=
y
[
3
] /
z
[
3
] *
2
;
12
}
13
14
/* { dg-final { scan-tree-dump "optimized: basic block" "slp2" { target vect_int } } } */