[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2005-01-14 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Severity|normal |minor Last reconfirmed|2004-12-12 04:39:18 |2005-01-15 06:21:42 date|

[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2005-01-19 Thread mmitchel at gcc dot gnu dot org
--- Additional Comments From mmitchel at gcc dot gnu dot org 2005-01-19 18:52 --- Ada and Java bugs are not release-critical; therefore, I've removed the target milsetone. -- What|Removed |Added

[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|--- |4.0.0 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18399

[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Bug 18399 depends on bug 15576, which changed state. Bug 15576 Summary: [4.0 Regression] Class initialization optimization is disabled http://gcc.gnu.org/bugzi

[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added OtherBugsDependingO||17574 nThis|| http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18399

[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-11-09 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-09 14:53 --- A good small example: public class t { static final int nn() { return 0; } public static void main (String[] argv) { int n = 0; for (int i = 0; i < 1000; i++) n += nn(); Sys

[Bug java/18399] [4.0 Regression] Class initialization optimization does not work with the inliner

2004-12-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-12-12 04:39 --- Actually the way this used to work before the tree-ssa was during inlining we called out to the front- end to merge the two variables. -- What|Removed |Added ---