diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-02-15 07:19:51 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-02-15 07:19:51 +0000 |
commit | e22857eb9d98ed0dff03bb311988f18335a5bf71 (patch) | |
tree | 4a7a7da77a61ecb4253c8b4d31cb38e3be470551 /gcc/flow.c | |
parent | 2e09ee33f0420c4e4f063c8dff27afa017c0b687 (diff) | |
download | gcc-e22857eb9d98ed0dff03bb311988f18335a5bf71.zip gcc-e22857eb9d98ed0dff03bb311988f18335a5bf71.tar.gz gcc-e22857eb9d98ed0dff03bb311988f18335a5bf71.tar.bz2 |
flow.c (recompute_reg_usage): Remove all arguments.
* flow.c (recompute_reg_usage): Remove all arguments.
* passes.c (rest_of_compilation): Adjust the call to
recompute_reg_usage.
* rtl.h: Adjust the prototype for recompute_reg_usage.
From-SVN: r95058
Diffstat (limited to 'gcc/flow.c')
-rw-r--r-- | gcc/flow.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -4205,17 +4205,11 @@ debug_regset (regset r) register allocators to prioritize pseudos for allocation to hard regs. More accurate reference counts generally lead to better register allocation. - F is the first insn to be scanned. - - LOOP_STEP denotes how much loop_depth should be incremented per - loop nesting level in order to increase the ref count more for - references in a loop. - It might be worthwhile to update REG_LIVE_LENGTH, REG_BASIC_BLOCK and possibly other information which is used by the register allocators. */ void -recompute_reg_usage (rtx f ATTRIBUTE_UNUSED, int loop_step ATTRIBUTE_UNUSED) +recompute_reg_usage (void) { allocate_reg_life_data (); /* distribute_notes in combiner fails to convert some of the REG_UNUSED notes |