blob: a49f06b0861750ce984024bb9bfd85abffcf6b56 [file] [log] [blame]
/* { dg-do compile { target lp64 } } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler-times "movq\[^\n\r]*, %rax|mov\[ \t]*rax," 1 } } */
typedef struct
{
double x;
} Double;
Double __attribute__((ms_abi)) fn1 ()
{
Double v;
v.x = 3.145;
return v;
}