This is the mail archive of the gcc-bugs@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]

[Bug optimization/14541] [tree-ssa] built-in math functions are not fully optimized at tree level


------- Additional Comments From kazu at cs dot umass dot edu  2004-05-04 15:52 -------
Oops, I forgot -ffast-math.  Still, if I go thourgh a temporary like so:

void
test (double d1)
{
  double tem = exp (d1);
  if (log (tem) != d1)
    link_failure ();
}

the link_failure does not go away even with -ffast-math.


-- 


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


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