]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/tls/asm-1.c
Merge tree-ssa-20020619-branch into mainline.
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / tls / asm-1.c
CommitLineData
875abd36 1/* { dg-options "-Werror" } */
2__thread int i;
3
4int foo ()
5{
4ee9c684 6 asm volatile ("" :: "m" (&i)); /* { dg-error "directly addressable" } */
875abd36 7}