This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RFC: ssa subvariables for complex types


> 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);
}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]