blob: ea489559c9328447689e6a3e6abfcee667f6a129 [file] [log] [blame]
/* PR inline-asm/55934 */
/* { dg-do compile } */
/* { dg-require-effective-target sse } */
/* { dg-options "-std=c99 -msse" } */
_Complex float
foo (void)
{
_Complex float x;
__asm ("" : "=x" (x)); /* { dg-error "inconsistent .* constraint" } */
return x;
}