[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

   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

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||


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-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

   Last reconfirmed|2004-12-05 03:59:18 |2004-12-12 04:39:18
   date||


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

   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/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||FIXEDBug 18399 depends on bug 
15576, which changed state.

Bug 15576 Summary: [4.0 Regression] Class initialization optimization is 
disabled
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15576

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

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

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();
System.out.println(n);
  }
}

-- 
   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever Confirmed||1
   Last reconfirmed|-00-00 00:00:00 |2004-11-09 14:53:03
   date||


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18399