blob: 6198ea9af05198cbf9c7908601759f2034dbfa74 [file] [log] [blame]
/* { dg-do compile } */
/* { dg-options "-O2" } */
double
test ()
{
double x = 1.0;
asm ("fld %1" /* { dg-error "explicitly used registers must be grouped at top of stack" } */
: "=&t" (x)
: "u" (x));
return x;
}