diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-30 23:58:18 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-30 23:58:18 +0000 |
commit | 63e104a6778136736657ccdf5d33f95f61ea7505 (patch) | |
tree | 72444d2745efa29ca92cffbcfbeb2823592f16ba /gcc/function.h | |
parent | 2fadb29aa19625852934eb92cd7a6fc23f0f316b (diff) | |
download | gcc-63e104a6778136736657ccdf5d33f95f61ea7505.tar.gz |
* function.h (struct function): Remove x_last_parm_insn,
inl_last_parm_insn.
(last_parm_insn): Remove.
* function.c (free_after_compilation): Don't clear them.
(fixup_var_refs_insn, assign_parms): Don't set them.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83939 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r-- | gcc/function.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/function.h b/gcc/function.h index 6dd0f307804..b83418f0cc4 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -296,10 +296,6 @@ struct function GTY(()) /* Insn after which register parms and SAVE_EXPRs are born, if nonopt. */ rtx x_parm_birth_insn; - /* Last insn of those whose job was to put parms into their nominal - homes. */ - rtx x_last_parm_insn; - /* 1 + last pseudo register number possibly used for loading a copy of a parameter of this function. */ unsigned int x_max_parm_reg; @@ -337,9 +333,6 @@ struct function GTY(()) int no_debugging_symbols; rtvec original_arg_vector; tree original_decl_initial; - /* Last insn of those whose job was to put parms into their nominal - homes. */ - rtx inl_last_parm_insn; /* Highest label number in current function. */ int inl_max_label_num; @@ -550,7 +543,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 last_parm_insn (cfun->x_last_parm_insn) #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) |