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
/
slp-multitypes-13.c
blob
bbbbb2c64b415711b1b52c3bc07b4eb360fc4a78
1
/* { dg-do compile } */
2
3
void
4
f
(
long
*
x
,
int
n
)
5
{
6
for
(
int
i
=
0
;
i
<
n
;
i
++)
7
{
8
x
[
i
*
2
] =
1L
<<
i
;
9
x
[
i
*
2
+
1
] =
1L
<<
i
;
10
}
11
}