This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

PATCH:



This simple patch saves 6M compiling Gerald's test case.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

2000-11-27  Mark Mitchell  <mark@codesourcery.com>

	* function.c (free_after_compilation): Clear x_clobber_return_insn.

Index: function.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/function.c,v
retrieving revision 1.231
diff -c -p -r1.231 function.c
*** function.c	2000/11/13 07:00:55	1.231
--- function.c	2000/11/27 20:13:03
*************** free_after_compilation (f)
*** 483,488 ****
--- 483,489 ----
    f->x_tail_recursion_label = NULL;
    f->x_tail_recursion_reentry = NULL;
    f->x_arg_pointer_save_area = NULL;
+   f->x_clobber_return_insn = NULL;
    f->x_context_display = NULL;
    f->x_trampoline_list = NULL;
    f->x_parm_birth_insn = NULL;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]