1 2 3 4 5 6 7 8 9 10
/* PR 7154 */ /* { dg-do compile } */ /* { dg-options "-O -fpic" } */ /* { dg-warning "not supported" "PIC unsupported" { target cris-*-elf* mmix-*-* } 0 } */ const int x[1]={ 1 }; void foo(int i, int *p) { asm volatile("" : "+r"(i) : "m" (x[0]), "r"(p)); }