diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-16 08:33:09 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-06-16 08:33:09 +0000 |
commit | ee5142f60e27fefb58139ebf19ffb540225cd718 (patch) | |
tree | 06bf56f3d3b7725124bc6f55e04f93dde039d096 /gcc/function.c | |
parent | a16eb452b74843b98aa6652aaef6f4fc0302caa1 (diff) | |
download | gcc-ee5142f60e27fefb58139ebf19ffb540225cd718.tar.gz |
2006-06-16 Richard Guenther <rguenther@suse.de>
* function.h (enum function_frequency): Move declaration
out of struct function.
(struct function): Move bool fields and the enum to the bitfield
section. Reorder elements to avoid padding. Remove unused
fields left over from the RTL inliner removal.
* function.c (free_after_compilation): Do not zero removed fields.
* Makefile.in (ipa-reference.o): Add $(FUNCTION_H) dependency.
(ipa-type-escape.o): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@114712 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/function.c b/gcc/function.c index bb6480118d6..1a495ac1a05 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -332,8 +332,6 @@ free_after_compilation (struct function *f) f->x_stack_check_probe_note = NULL; f->x_arg_pointer_save_area = NULL; f->x_parm_birth_insn = NULL; - f->original_arg_vector = NULL; - f->original_decl_initial = NULL; f->epilogue_delay_list = NULL; } |