Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr53589.c
blob: 5ab78907f9803111da0ddcbbf8fa0ed2a89ab019 [
file
] [
log
] [
blame
]
/* PR rtl-optimization/53589 */
/* { dg-do compile } */
extern
void
foo
(
void
)
__attribute__
((
__noreturn__
));
void
bar
(
int
x
)
{
if
(
x
<
0
)
foo
();
if
(
x
==
0
)
return
;
__asm
goto
(
"# %l[lab]"
:
:
:
:
lab
);
lab
:;
}