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
/
pr96349.c
blob
4ce394982135730a27ec0047ce10fe2dc314e727
1
/* { dg-do compile } */
2
3
void
__attribute__
((
returns_twice
))
4
gr
(
void
);
5
6
void
7
ib
(
void
);
8
9
void
10
zg
(
void
);
11
12
void
13
yw
(
int
uz
)
14
{
15
gr
();
16
17
for
(;;)
18
if
(
uz
!=
0
)
19
{
20
uz
=
0
;
21
ib
();
22
}
23
else
24
zg
();
25
}