Sign in
gnu
/
gcc
/
19220ca6aa79921cc431e41f25986e16410c7a6a
/
.
/
gcc
/
testsuite
/
gcc.dg
/
asm-6.c
blob: 9c0ac1eb27e4908b9a3e1609406c7ea046fae43c [
file
] [
log
] [
blame
]
/* Check error messages for named asm operands. */
void
foo
()
{
int
i
;
__asm__
(
""
:
[
data
]
"=r"
(
i
)
:
[
data
]
"i"
(
100
));
/* { dg-error "duplicate asm operand" } */
__asm__
(
"%[foo]"
::
[
bar
]
"i"
(
1
));
/* { dg-error "undefined named operand" } */
}