[Bug tree-optimization/22116] [4.1 Regression] PRE of COMPLEX_EXPR causes ICE

pinskia at gcc dot gnu dot org gcc-bugzilla@gcc.gnu.org
Sat Jun 18 20:56:00 GMT 2005


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-18 20:56 -------
Here is something which is slightly reduced:
void g(_Complex float);
_Complex float f(int data, _Complex float x, _Complex float y)
{
  _Complex float i, t;
  if (data) 
  {
    i = x +  __imag__ y;
    g(i);
  }
  else
    i = 5;
  t = x + __imag__ y;
  g(t);
  return t * i;
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22116



More information about the Gcc-bugs mailing list