[Bug tree-optimization/23133] recip does not factor division by function parameter
pinskia at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Fri Jul 29 13:50:00 GMT 2005
------- Additional Comments From pinskia at gcc dot gnu dot org 2005-07-29 13:45 -------
Confirmed, another testcase (which might be needed as the redundant load of a and b are not done):
double a, b;
int x;
double foo(double d)
{
double a1 = a, b1 = b;
if (x)
a1/=d;
return (a1/d) * (b1/d);
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Last reconfirmed|0000-00-00 00:00:00 |2005-07-29 13:45:43
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23133
More information about the Gcc-bugs
mailing list