2 // This testcase ICEd on SPARC -m64 because emit_group_load tried
3 // to move a DFmode register into DImode register directly.
5 // { dg-options "-O2" }
9 C (double y, double z) { __real__ x = y; __imag__ x = z; }
10 double r () const { return __real__ x; }
11 double i () const { return __imag__ x; }
17 return C (z.r (), -z.i ());