1 /* { dg-do compile { target ia32 } } */ 2 /* { dg-options "-march=pentium" } */ 3 f_s(void)4 void f_s(void) { short x; asm("" : "=@ccc"(x)); } f_i(void)5 void f_i(void) { int x; asm("" : "=@ccc"(x)); } 6