IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git] / gcc / testsuite / gcc.dg / pr21419.c
blobdc8f602e6b22a5aff8b242f6a093f150be0e5838
1 /* { dg-do compile } */
2 const int i = 0;
4 void f(void)
6 __asm__ __volatile__ ("" : "=m" (i)); /* { dg-error "read-only variable" } */
10 void g(const int set)
12 __asm__ __volatile__ ("" : "=r" (set)); /* { dg-error "read-only location" } */