This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Kill hack in java disabling unit-at-a-time
- From: Jan Hubicka <jh at suse dot cz>
- To: gcc-patches at gcc dot gnu dot org
- Date: Fri, 12 Aug 2005 21:49:11 +0200
- Subject: Kill hack in java disabling unit-at-a-time
Hi,
apparently this hack went in with tree-ssa merge causing unit-at-a-time
to be disabled by default since 4.0.0. Fortunately re-enabling it don't
seem to cause any regressions, however I will wait a day before
commiting this so people might comment if this don't seem appropriate
for stage3.
Bootstrapped/regtested i686-pc-gnu-linux, will commit it as obvious if
no-one objects :)
Honza
2005-08-12 Jan Hubicka <jh@suse.cz>
* decl.c (end_java_method): Remove hack disabing unit-at-a-time.
Index: java/decl.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/decl.c,v
retrieving revision 1.227
diff -c -3 -p -r1.227 decl.c
*** java/decl.c 2 Jul 2005 10:55:06 -0000 1.227
--- java/decl.c 12 Aug 2005 15:49:01 -0000
*************** end_java_method (void)
*** 2057,2063 ****
attach_init_test_initialization_flags, block_body);
}
- flag_unit_at_a_time = 0;
finish_method (fndecl);
if (! flag_unit_at_a_time)
--- 2057,2062 ----