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
/
pr82289.c
blob
ae3001f306f2f69764a000090d2a4382a0b30270
1
/* { dg-do compile } */
2
3
int
a
,
b
,
c
, *
d
, *
f
[
1
];
4
5
void
fn1
(
int
*
j
)
6
{
7
int
e
,
g
,
h
=
1
;
8
for
(;
e
;
e
++)
9
{
10
if
(
g
>
0
)
11
{
12
d
=
j
;
13
return
;
14
}
15
if
(!
h
)
16
while
(
g
)
17
;
18
while
(
h
<
1
)
19
if
(
a
)
20
{
21
fn1
(&
h
);
22
h
=
0
;
23
}
24
f
[
e
] = &
c
;
25
}
26
while
(
1
)
27
;
28
}