diff options
author | Jan Hubicka <jh@suse.cz> | 2008-08-31 22:49:42 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2008-08-31 20:49:42 +0000 |
commit | 899cc0f433d06f9cf914224fe6968e391b903c0b (patch) | |
tree | 212dea79b765386b3da5143e55e3a400579610b4 /gcc/config/v850 | |
parent | cd6b7bc60d96bede7b4aa79495523ac997ab7c62 (diff) | |
download | gcc-899cc0f433d06f9cf914224fe6968e391b903c0b.zip gcc-899cc0f433d06f9cf914224fe6968e391b903c0b.tar.gz gcc-899cc0f433d06f9cf914224fe6968e391b903c0b.tar.bz2 |
frv.c (frv_rtx_costs): Update forward declaration.
* frv.c (frv_rtx_costs): Update forward declaration.
* spu.c (spu_rtx_costs): Likewise.
* pdp11.c: Include df.h
(pdp11_output_function_epilogue): Use df_set_regs_ever_live.
* m68hc11.c (m68hc11_gen_highpart): Fix call of gen_rtx_SUBREG.
(m68hc11_rtx_costs_1): Fix call of rtx_cost.
* iq2000.c (iq2000_address_cost): Add speed argument.
(iq2000_rtx_costs): Likewise.
* mn10300.c (mn10300_address_cost_1): Remove speed argument;
update call of mn10300_address_cost.
* mcore.c: Include df.h
(mcore_rtx_costs): Update prototype.
* score3.c: Include df.h
(score3_rtx_costs): Remove speed argument.
* score7.c: Include df.h
(score7_address_cost): Remove speed argument.
* score-protos.h (score_address_cost): Update prototype.
* score.c: Include df.h
(score_rtx_costs): Update call of costs functions.
* v850.c (v850_rtx_costs): Add bool argument.
From-SVN: r139843
Diffstat (limited to 'gcc/config/v850')
-rw-r--r-- | gcc/config/v850/v850.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index d461979..ee72e82 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -53,7 +53,7 @@ static bool v850_handle_option (size_t, const char *, int); static void const_double_split (rtx, HOST_WIDE_INT *, HOST_WIDE_INT *); static int const_costs_int (HOST_WIDE_INT, int); static int const_costs (rtx, enum rtx_code); -static bool v850_rtx_costs (rtx, int, int, int *); +static bool v850_rtx_costs (rtx, int, int, int *, bool); static void substitute_ep_register (rtx, rtx, int, int, rtx *, rtx *); static void v850_reorg (void); static int ep_memory_offset (enum machine_mode, int); |