diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2005-06-04 14:02:35 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-06-04 14:02:35 +0000 |
commit | f995dcfefe4df994df329c2495e415016d0384f0 (patch) | |
tree | 51a0199072df111b73ed7078485a4b6bec220510 /gcc/toplev.c | |
parent | 4226398ba733768dcf297f03c9bb7631fc6367cd (diff) | |
download | gcc-f995dcfefe4df994df329c2495e415016d0384f0.zip gcc-f995dcfefe4df994df329c2495e415016d0384f0.tar.gz gcc-f995dcfefe4df994df329c2495e415016d0384f0.tar.bz2 |
function.c (prologue, [...]): Change their types to VEC(int,heap)*.
* function.c (prologue, epilogue, sibcall_epilogue): Change
their types to VEC(int,heap)*.
(free_after_compilation): Free the three vectors above.
(init_function_for_compilation, record_insns, contains,
prologue_epilogue_contains, sibcall_epilogue_contains,
reposition_prologue_and_epilogue_notes): Use VEC instead of
VARRAY. (init_function_once): Remove.
* function.h: Remove the prototype for init_function_once.
* toplev.c (backend_init): Don't call init_function_once.
From-SVN: r100588
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index b26d767..0d30909 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1767,7 +1767,6 @@ backend_init (void) init_alias_once (); init_loop (); init_reload (); - init_function_once (); init_varasm_once (); /* The following initialization functions need to generate rtl, so |