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
/
pr83685.c
blob
062f75d23e997e7a78b6a2a0df116488a6c7a7ab
1
/* { dg-do compile } */
2
3
int
_setjmp
(
void
*);
4
void
foo
(
int
);
5
6
void
7
bar
(
int
e
,
int
b
,
char
c
,
void
*
d
)
8
{
9
while
(
b
)
10
{
11
if
(
_setjmp
(
d
))
12
foo
(
e
);
13
if
(
c
)
14
{
15
e
--;
16
foo
(
0
);
17
}
18
e
++;
19
}
20
}