blob: 07b822f311251029f3acc69e48608bd12f66f2dd (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* PR inline-asm/84742 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
void
foo ()
{
char b = 1;
asm volatile ("" : "+T,Y" (b)); /* { dg-error "impossible constraint in 'asm'" } */
}
|