diff options
author | Richard Henderson <rth@redhat.com> | 2004-07-01 02:54:20 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2004-07-01 02:54:20 -0700 |
commit | b79c52841bdf69b9788387c9d835d854de09dcb5 (patch) | |
tree | cb23537d10ab4a9a66cb83603753157467408971 /gcc/function.h | |
parent | ede1a3872913df59f3a1f4299ec5f6c7706d3b7b (diff) | |
download | gcc-b79c52841bdf69b9788387c9d835d854de09dcb5.zip gcc-b79c52841bdf69b9788387c9d835d854de09dcb5.tar.gz gcc-b79c52841bdf69b9788387c9d835d854de09dcb5.tar.bz2 |
function.h (struct function): Remove x_function_call_count.
* function.h (struct function): Remove x_function_call_count.
(function_call_count): Remove.
* calls.c (expand_call): Don't set it.
* integrate.c (copy_rtx_and_substitute): Likewise.
* function.h (struct function): Remove x_cleanup_label.
(cleanup_label): Remove.
* stmt.c (expand_value_return): Don't use it.
* function.c (free_after_compilation): Don't set it.
(expand_function_start): Likewise. Remove parms_have_cleanups arg.
* cfgexpand.c (tree_expand_cfg): Update call.
* tree.h (expand_function_start): Update decl.
From-SVN: r83966
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/function.h b/gcc/function.h index ca15492..64c02d0 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -236,19 +236,10 @@ struct function GTY(()) has_hard_reg_initial_val (see integrate.[hc]). */ struct initial_value_struct *hard_reg_initial_vals; - /* Number of function calls seen so far in current function. */ - int x_function_call_count; - /* List (chain of EXPR_LIST) of labels heading the current handlers for nonlocal gotos. */ rtx x_nonlocal_goto_handler_labels; - /* Label that will go on parm cleanup code, if any. - Jumping to this label runs cleanup code for parameters, if - such code must be run. Following this code is the logical return - label. */ - rtx x_cleanup_label; - /* Label that will go on function epilogue. Jumping to this label serves as a "return" instruction on machines which require execution of the epilogue on all returns. */ @@ -523,7 +514,6 @@ extern int trampolines_created; #define max_parm_reg (cfun->x_max_parm_reg) #define parm_reg_stack_loc (cfun->x_parm_reg_stack_loc) -#define cleanup_label (cfun->x_cleanup_label) #define return_label (cfun->x_return_label) #define naked_return_label (cfun->x_naked_return_label) #define save_expr_regs (cfun->x_save_expr_regs) @@ -533,7 +523,6 @@ extern int trampolines_created; #define tail_recursion_reentry (cfun->x_tail_recursion_reentry) #define arg_pointer_save_area (cfun->x_arg_pointer_save_area) #define rtl_expr_chain (cfun->x_rtl_expr_chain) -#define function_call_count (cfun->x_function_call_count) #define used_temp_slots (cfun->x_used_temp_slots) #define avail_temp_slots (cfun->x_avail_temp_slots) #define temp_slot_level (cfun->x_temp_slot_level) |