PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / asm7.C
bloba5cad0073719e6f626ba00912877866061e003b5
1 /* { dg-do compile } */
2 const int i = 0;
4 void f(void)
6   __asm__ __volatile__ ("" : "=m" (i)); /* { dg-error "read-only variable" } */
9 void g(const int set)
11   __asm__ __volatile__ ("" : "=r" (set)); /* { dg-error "read-only parameter" } */