summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tls/asm-1.c
blob: 68c49f61180fd5a2fa21d89e35212f8ad1840325 (plain)
1
2
3
4
5
6
7
/* { dg-options "-Werror" } */
__thread int i;

int foo ()
{
  asm volatile ("" :: "m" (&i));	/* { dg-error "lvalue" } */
}