[Bug tree-optimization/23133] recip does not factor division by function parameter

2005-08-01 Thread rguenth at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.1.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23133

[Bug tree-optimization/23133] recip does not factor division by function parameter

2005-08-01 Thread rguenth at gcc dot gnu dot org
--- Additional Comments From rguenth at gcc dot gnu dot org 2005-08-01 08:58 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug tree-optimization/23133] recip does not factor division by function parameter

2005-08-01 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-08-01 08:58 --- Subject: Bug 23133 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-08-01 08:58:25 Modified files: gcc: ChangeLog tree-ssa-math-opts.c Log

[Bug tree-optimization/23133] recip does not factor division by function parameter

2005-07-29 Thread rguenth at gcc dot gnu dot org
--- Additional Comments From rguenth at gcc dot gnu dot org 2005-07-29 14:28 --- I have a patch for this. -- What|Removed |Added AssignedTo|unassigned at gcc dot gnu

[Bug tree-optimization/23133] recip does not factor division by function parameter

2005-07-29 Thread pinskia at gcc dot gnu dot org
--- 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) *