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

2016-09-30 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=18399 Andrew Pinski changed: What|Removed |Added Status|NEW |RESOLVED Resolution|---

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

2005-08-20 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Target Milestone|4.0.1 |--- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18399

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

2005-08-20 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-20 19:31 --- I should copy and paste the full tree dump: : _Jv_InitClass (&t.class); n = 0; :; _Jv_InitClass (&t.class); n = n + 1; ; if (n == 1000) goto ; else goto ; The call to _Jv_InitClass is in the in

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

2005-08-20 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-08-20 19:29 --- Actually this still does not work: >From .final_cleanup: :; _Jv_InitClass (&t.class); ; i = i + 1; if (i == 1000) goto ; else goto ; -- What|Removed |Added ---