Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr54127.c
blob: 4f64998af0a0cf3cf20ed61e53ea7e5f115a0c1f [
file
] [
log
] [
blame
]
/* PR rtl-optimization/54127 */
/* { 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] %l[lab2]"
:
:
:
:
lab
,
lab2
);
lab
:;
lab2
:;
}