[gcc]
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr55934.c
blob0145b2b391b0930aefc141fff832b4e6273a1223
1 /* PR inline-asm/55934 */
2 /* { dg-do compile } */
3 /* { dg-options "-std=c99 -msse" } */
4 _Complex float
5 foo (void)
7 _Complex float x;
8 __asm ("" : "=x" (x)); /* { dg-error "inconsistent .* constraint" } */
9 return x;