On Fri, Jan 18, 2013 at 12:45:06AM +0100, Steven Bosscher wrote: > --- testsuite/gcc.target/i386/pr55934.c (revision 0) > +++ testsuite/gcc.target/i386/pr55934.c (revision 0) > @@ -0,0 +1,10 @@ > +/* PR inline-asm/55934 */ > +/* { dg-do compile } */ > +/* { dg-require-effective-target sse } */
Don't you need /* { dg-options "-msse" } */ ? dg-require-effective-target sse itself doesn't add -msse option... > +_Complex float > +foo (void) > +{ > + _Complex float x; > + __asm ("" : "=x" (x)); /* { dg-error "inconsistent register constraints" } > */ > + return x; > +} Jakub