diff options
author | Steven Bosscher <stevenb@suse.de> | 2004-08-25 12:31:01 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2004-08-25 12:31:01 +0000 |
commit | 5affca016a4adb37602d69049ac81ddd01cba12c (patch) | |
tree | b28bab4d93887fff2c55374a244e786bbfefd510 /gcc/rtl.h | |
parent | 15793d0cdb54a8e5239dfaa4527401223d317c85 (diff) | |
download | gcc-5affca016a4adb37602d69049ac81ddd01cba12c.zip gcc-5affca016a4adb37602d69049ac81ddd01cba12c.tar.gz gcc-5affca016a4adb37602d69049ac81ddd01cba12c.tar.bz2 |
cse.c (cse_around_loop, [...]): Remove.
* cse.c (cse_around_loop, cse_check_loop_start,
cse_set_around_loop): Remove.
(cse_basic_block): Remove the around_loop argument.
(cse_end_of_basic_block): Remove the after_loop argument.
(cse_main): Likewise.
* rtl.h (cse_main): Update prototype.
* passes.c (rest_of_handle_cse, rest_of_handle_cse2,
rest_of_handle_gcse): Update cse_main calls.
From-SVN: r86546
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1914,7 +1914,7 @@ extern int rtx_to_tree_code (enum rtx_code); /* In cse.c */ extern int delete_trivially_dead_insns (rtx, int); -extern int cse_main (rtx, int, int, FILE *); +extern int cse_main (rtx, int, FILE *); extern void cse_condition_code_reg (void); extern int exp_equiv_p (rtx, rtx, int, bool); extern unsigned hash_rtx (rtx x, enum machine_mode, int *, int *, bool); |