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
/
pr97753.c
blob
e49a8487631d22b62aa7d3bb8b1da39752b3a6dd
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O3" } */
3
4
long
a
[
6
];
5
void
d
(
int
c
)
6
{
7
for
(;
c
;
c
++)
8
for
(
int
b
=
0
;
b
<
8
;
b
++)
9
((
char
*)&
a
[
c
])[
b
] =
c
;
10
}