aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/ext/asm7.C
blob: a5cad0073719e6f626ba00912877866061e003b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
const int i = 0;

void f(void)
{
  __asm__ __volatile__ ("" : "=m" (i)); /* { dg-error "read-only variable" } */
}

void g(const int set)
{
  __asm__ __volatile__ ("" : "=r" (set)); /* { dg-error "read-only parameter" } */
}