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
/
pr89779.c
blob
2a9d240aa40928c7a586decb59e507fe2b2834e3
1
/* { dg-do compile } */
2
3
typedef
int
a
;
4
void
h
(
a
);
5
void
c
(
a
*
d
,
int
b
)
6
{
7
int
e
,
f
,
g
;
8
for
(;
e
;
e
++)
9
for
(
f
=
0
;
f
<
4
;
f
++)
10
if
(
d
)
11
for
(
g
=
e
+
1
;
g
;
g
++)
12
h
(
d
[
g
]);
13
}
14
void
i
()
15
{
16
a
*
j
;
17
int
k
,
l
;
18
for
(;
k
;
k
++)
19
c
(
j
,
l
);
20
}