This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/16447] out of ssa generates bloated code
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 9 Jul 2004 04:02:26 -0000
- Subject: [Bug tree-optimization/16447] out of ssa generates bloated code
- References: <20040709032906.16447.dann@godzilla.ics.uci.edu>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-07-09 04:02 -------
Confirmed, here is a simple example:
int f(int i, int b, int c)
{
if (i)
return 1;
if (b)
return 1;
if (c)
return 1;
return 0;
}
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |compile-time-hog, TREE
Last reconfirmed|0000-00-00 00:00:00 |2004-07-09 04:02:25
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16447