> Well, it's written to only in this testcase.  Can you post a more complete
> one?

Here's the complete testcase.

int g(_Complex int*);
int f(void)
{
  _Complex int t = 0;
 __real__ t = 2;
 __imag__ t = 2;
  return g(&t);
}

Reply via email to