]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr21419.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr21419.c
CommitLineData
02eb875f
PB
1/* { dg-do compile } */
2const int i = 0;
3
4void f(void)
5{
5544530a 6 __asm__ __volatile__ ("" : "=m" (i)); /* { dg-error "read-only variable" } */
02eb875f
PB
7
8}
9
10void g(const int set)
11{
4816c593 12 __asm__ __volatile__ ("" : "=r" (set)); /* { dg-error "read-only parameter" } */
02eb875f
PB
13}
14
15