2 // This testcase ICEd on IA-64 because emit_group_store
3 // did not handle loading CONCAT from register group
8 C (double y, double z) { __real__ x = y; __imag__ x = z; }
9 double r () const { return __real__ x; }
10 double i () const { return __imag__ x; }
14 inline C conj (const C& x)
16 return C (x.r (), - x.i ());