[Bug tree-optimization/17671] PHI-OPT is not smart enough

2005-03-07 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-03-08 00:40 --- Subject: Bug 17671 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-03-08 00:40:33 Modified files: gcc: ChangeLog tree-ssa-phiopt.c

[Bug tree-optimization/17671] PHI-OPT is not smart enough

2005-03-07 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-08 00:41 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug tree-optimization/17671] PHI-OPT is not smart enough

2005-03-06 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-03-06 19:52 --- Patch for 4.1.0 was posted here: http://gcc.gnu.org/ml/gcc-patches/2005-03/msg00548.html. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17671

[Bug tree-optimization/17671] PHI-OPT is not smart enough

2004-10-04 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-04 12:45 --- Posted a new patch here: http://gcc.gnu.org/ml/gcc-patches/2004-10/msg00221.html. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17671

[Bug tree-optimization/17671] PHI-OPT is not smart enough

2004-09-28 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-09-29 03:44 --- Here is another example which I already with my patch. int f(int a, int b, int c) { if (c == 0) goto temp; if (a == 0) return 0; temp: if (a == b) return a; return a; } --