diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-31 20:49:42 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-31 20:49:42 +0000 |
commit | db65aa2c739244ba24c54c24a5631e89552b0f1e (patch) | |
tree | 212dea79b765386b3da5143e55e3a400579610b4 /gcc/config/v850 | |
parent | cf9e86a11187f8bffc40bfbde5ac929a1df19923 (diff) | |
download | ppe42-gcc-db65aa2c739244ba24c54c24a5631e89552b0f1e.tar.gz ppe42-gcc-db65aa2c739244ba24c54c24a5631e89552b0f1e.zip |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@139843 138bc75d-0d04-0410-961f-82ee72b054a4
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 d4619797696..ee72e82e4f9 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); |