aboutsummaryrefslogtreecommitdiff
path: root/gcc/ira.h
diff options
context:
space:
mode:
authorRichard Sandiford <richard.sandiford@arm.com>2014-09-12 07:27:10 +0000
committerRichard Sandiford <rsandifo@gcc.gnu.org>2014-09-12 07:27:10 +0000
commit19c708dc8316d80ca3611106fd989b317d55b968 (patch)
tree839e2de96e8104f4dc92dbb429fc966fdab1fdd6 /gcc/ira.h
parent44fc1b7b63f6d6ae9f9f618e0f6b7a40e06f08e3 (diff)
downloadgcc-19c708dc8316d80ca3611106fd989b317d55b968.zip
gcc-19c708dc8316d80ca3611106fd989b317d55b968.tar.gz
gcc-19c708dc8316d80ca3611106fd989b317d55b968.tar.bz2
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.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/ira.h b/gcc/ira.h
index 66030d6f..1d1ec65 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 *);