--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-09
04:36 ---
Fixed.
--
What|Removed |Added
Status|ASSIGNED|RESOLVED
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-08-09
03:28 ---
Subject: Bug 23234
CVSROOT:/cvs/gcc
Module name:gcc
Changes by: [EMAIL PROTECTED] 2005-08-09 03:28:38
Modified files:
gcc: ChangeLog tree-ssa-math-opts.c
--- Additional Comments From steven at gcc dot gnu dot org 2005-08-07
16:13 ---
That patch from comment #4 is also not right. See the URL for something
that I expect to be correct (fingers crossed while it's trying to pass
testing... ;-)
--
What|Removed
--- Additional Comments From steven at gcc dot gnu dot org 2005-08-07
15:52 ---
Index: tree-ssa-math-opts.c
===
RCS file: /cvs/gcc/gcc/gcc/tree-ssa-math-opts.c,v
retrieving revision 2.4
diff -u -p -r2.4 tree-ssa-math-opt
--- Additional Comments From steven at gcc dot gnu dot org 2005-08-07
15:19 ---
I'll take a look at this.
--
What|Removed |Added
AssignedTo|unassigned at gcc dot
--
What|Removed |Added
Target Milestone|--- |4.1.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=23234
--- Additional Comments From uttamp at us dot ibm dot com 2005-08-04 17:57
---
(In reply to comment #1)
> Confirmed, reduced testcase:
> double func ( double a, double b, double c)
> {
> double y0;
> if(a==0.0) {
> y0 = -c/b;
> return y0;
> }
> y0 = -c/b;
> return
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-04
17:55 ---
Confirmed, reduced testcase:
double func ( double a, double b, double c)
{
double y0;
if(a==0.0) {
y0 = -c/b;
return y0;
}
y0 = -c/b;
return y0;
}
--
What|Removed