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
/
pr116575.c
blob
2047041ca64bca6ed0e1ca56b1bea0a8ae458591
1
/* { dg-do compile } */
2
3
int
a
;
4
float
*
b
, *
c
;
5
void
d
(
char
*
__restrict e
)
6
{
7
for
(;
a
;
a
++,
b
+=
4
,
c
+=
4
)
8
if
(*
e
++) {
9
float
*
f
=
c
;
10
f
[
0
] =
b
[
0
];
11
f
[
1
] =
b
[
1
];
12
f
[
2
] =
b
[
2
];
13
f
[
3
] =
b
[
3
];
14
}
15
}