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
/
pr87894.c
blob
921a9cec4685dd247897f413962c11f6a724ac90
1
/* { dg-do compile } */
2
/* { dg-options "-Ofast" } */
3
4
int
a
,
b
,
c
,
d
;
5
double
e
;
6
7
void
f
(
double
g
[][
1
])
8
{
9
for
(;;)
10
{
11
double
h
;
12
for
(;
b
<
c
;
b
++)
13
{
14
if
(
b
>=
0
)
15
;
16
else if
(
d
)
17
h
=
2.0
;
18
else
19
h
=
0.0
;
20
if
(
e
)
21
g
[
a
][
b
] =
0.0
;
22
g
[
a
][
b
] =
h
;
23
}
24
}
25
}
26