3 // { dg-options "-O2" }
5 struct A { int i[3]; ~A (); };
7 struct B { struct A c; int i; B (); } b;
11 __asm ("" : : "r" (a)); // { dg-error "impossible constraint|non-memory input" }
12 __asm ("" : : "r" (b.c)); // { dg-error "impossible constraint|non-memory input" }
13 __asm ("" : : "r" (c)); // { dg-error "impossible constraint|non-memory input" }