diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-06-12 04:15:56 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-06-12 04:15:56 +0000 |
commit | 2fa4a84980a8076f2819d0eac793a3fa215c6276 (patch) | |
tree | 85141565fe52d7f0a1a45c4dc9d1cb2189baa8da /gcc/gcse.c | |
parent | 58ac1d7f0ed6264255737ccba13f32d70fb79d22 (diff) | |
download | gcc-2fa4a84980a8076f2819d0eac793a3fa215c6276.zip gcc-2fa4a84980a8076f2819d0eac793a3fa215c6276.tar.gz gcc-2fa4a84980a8076f2819d0eac793a3fa215c6276.tar.bz2 |
gcse.c (fis_get_condition): Make it a global function.
* gcse.c (fis_get_condition): Make it a global function.
* reload1.c (reload_cse_move2add): Detect implicit sets.
* rtl.h: Add a prototype for fis_get_condition.
From-SVN: r67814
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -611,7 +611,6 @@ static int load_killed_in_block_p PARAMS ((basic_block, int, rtx, int)); static void canon_list_insert PARAMS ((rtx, rtx, void *)); static int cprop_insn PARAMS ((rtx, int)); static int cprop PARAMS ((int)); -static rtx fis_get_condition PARAMS ((rtx)); static void find_implicit_sets PARAMS ((void)); static int one_cprop_pass PARAMS ((int, int, int)); static bool constprop_register PARAMS ((rtx, rtx, rtx, int)); @@ -4610,7 +4609,7 @@ cprop (alter_jumps) recording the value of *every* register scaned by canonicalize_condition, but this would require some code reorganization. */ -static rtx +rtx fis_get_condition (jump) rtx jump; { |