Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr59919.c
blob: 6809caaf9f3adee9d1c8525214b4e7155cb6b631 [
file
] [
log
] [
blame
]
typedef
int
jmp_buf
[
10
];
struct
S
{
int
i
;
jmp_buf buf
;
};
void
setjmp
(
jmp_buf
);
void
foo
(
int
*);
__attribute__
((
__noreturn__
,
__nonnull__
))
void
bar
(
struct
S
*);
void
baz
(
struct
S
*
p
)
{
bar
(
p
);
setjmp
(
p
->
buf
);
foo
(&
p
->
i
);
}