Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr81262.c
blob: 68fbea2a7ab8531f6236c9a836a32e515e8a7483 [
file
] [
log
] [
blame
]
/* PR sanitizer/81262 */
void
bar
(
void
)
__attribute__
((
cold
,
noreturn
));
int
foo
(
void
)
{
asm
goto
(
""
:
:
:
:
l1
,
l2
);
bar
();
l1
:
return
1
;
l2
:
return
0
;
}