diff options
author | Richard Sandiford <richard.sandiford@arm.com> | 2014-09-12 07:27:10 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@gcc.gnu.org> | 2014-09-12 07:27:10 +0000 |
commit | 19c708dc8316d80ca3611106fd989b317d55b968 (patch) | |
tree | 839e2de96e8104f4dc92dbb429fc966fdab1fdd6 /gcc/ira.h | |
parent | 44fc1b7b63f6d6ae9f9f618e0f6b7a40e06f08e3 (diff) | |
download | gcc-19c708dc8316d80ca3611106fd989b317d55b968.tar.gz |
ira.h (ira_finish_once): Delete.
gcc/
* ira.h (ira_finish_once): Delete.
* ira-int.h (target_ira_int::~target_ira_int): Declare.
(target_ira_int::free_ira_costs): Likewise.
(target_ira_int::free_register_move_costs): Likewise.
(ira_finish_costs_once): Delete.
* ira.c (free_register_move_costs): Replace with...
(target_ira_int::free_register_move_costs): ...this new function.
(target_ira_int::~target_ira_int): Define.
(ira_init): Call free_register_move_costs as a member function rather
than a global function.
(ira_finish_once): Delete.
* ira-costs.c (free_ira_costs): Replace with...
(target_ira_int::free_ira_costs): ...this new function.
(ira_init_costs): Call free_ira_costs as a member function rather
than a global function.
(ira_finish_costs_once): Delete.
* target-globals.c (target_globals::~target_globals): Call the
target_ira_int destructor.
* toplev.c: Include lra.h.
(finalize): Call lra_finish_once rather than ira_finish_once.
From-SVN: r215200
Diffstat (limited to 'gcc/ira.h')
-rw-r--r-- | gcc/ira.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/ira.h b/gcc/ira.h index 66030d6f00b..1d1ec65a237 100644 --- a/gcc/ira.h +++ b/gcc/ira.h @@ -177,7 +177,6 @@ extern struct ira_reg_equiv_s *ira_reg_equiv; extern void ira_init_once (void); extern void ira_init (void); -extern void ira_finish_once (void); extern void ira_setup_eliminable_regset (void); extern rtx ira_eliminate_regs (rtx, enum machine_mode); extern void ira_set_pseudo_classes (bool, FILE *); |