1 /* PR inline-asm/55934 */
2 /* { dg-do compile } */
3 /* { dg-require-effective-target sse } */
4 /* { dg-options "-std=c99 -msse" } */
5 _Complex float
foo(void)6 foo (void)
7 {
8 _Complex float x;
9 __asm ("" : "=x" (x)); /* { dg-error "inconsistent .* constraint" } */
10 return x;
11 }
12