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
/
pr108316.c
blob
6888ae50d9e7924b7af4a711be74c4215bbfbfd9
1
/* { dg-do compile } */
2
/* { dg-additional-options "-O3" } */
3
4
extern
_Bool a
[];
5
6
void
7
foo
(
short
i
,
int
b
[][
64
][
1
])
8
{
9
for
(;
i
<
64
;
i
+=
4
)
10
a
[
i
] =
b
[
0
][
i
] !=
0
;
11
}