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
/
pr83914.c
blob
0bef7986bc288744c24c848fab5ad81dc2509a8b
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O3" } */
3
4
struct
s
{
struct
s
*
ptrs
[
16
]; } *
a
, *
b
;
5
int
c
;
6
void
7
foo
(
int
n
)
8
{
9
for
(;
n
;
a
=
b
,
n
--)
10
{
11
b
=
a
+
1
;
12
for
(
c
=
8
;
c
;
c
--)
13
a
->
ptrs
[
c
] =
b
;
14
}
15
}