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
/
torture
/
pr116380.c
blob
5ffd99459d266f4259c3b4f94d1d3e002aa65ef4
1
/* { dg-do compile } */
2
/* { dg-additional-options "-fno-tree-scev-cprop" } */
3
4
int
a
[
3
],
d
[
3
],
c
;
5
int
f
(
int
e
,
int
b
)
6
{
7
for
(;
e
<
3
;
e
++)
8
{
9
a
[
0
] =
0
;
10
if
(
b
)
11
c
=
b
;
12
d
[
e
] =
0
;
13
a
[
e
] =
0
;
14
}
15
return
e
;
16
}