1 /* { dg-do compile } */ 2 /* { dg-options "-mno-xy" } */ 3 /* Would also like to assemble and check that we get the expected 4 "Error: bad instruction" assembler messages, but at the moment our 5 testharness can't do that. */ 6 f(int i)7void f (int i) 8 { 9 __asm__("add x0_u0, x0_u0, %0" : : "r" (i)); 10 } 11