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
/
pr115959.c
blob
181d55220182fa3657a88b28b9a873c3a1bb8752
1
/* { dg-do compile } */
2
3
int
a
;
4
_Bool
*
b
;
5
void
f
()
6
{
7
int
t
=
a
;
8
for
(
int
e
=
0
;
e
<
2048
;
e
++)
9
{
10
if
(!
b
[
e
])
11
t
=
0
;
12
}
13
a
=
t
;
14
}