Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
gcc.target
/
aarch64
/
pr98603.c
blob: f75d8e4e23a82f4be3d04bbb2205efa7a534f46f [
file
] [
log
] [
blame
]
/* PR rtl-optimization/98603 */
/* { dg-do compile } */
/* { dg-options "-O0" } */
int
foo
(
void
)
{
int
b
,
c
;
asm
goto
(
""
:
"=R"
(
b
),
"=r"
(
c
)
:
:
:
lab
);
/* { dg-error "impossible constraint in 'asm'" } */
lab
:;
}