diff options
author | Steven Bosscher <stevenb@suse.de> | 2005-05-09 17:52:20 +0000 |
---|---|---|
committer | Steven Bosscher <steven@gcc.gnu.org> | 2005-05-09 17:52:20 +0000 |
commit | 29d51cdb20e564546451e1e15a87037a7543d8e8 (patch) | |
tree | 6ca937bbe1996a99e17b469a90f86c5b560f1d05 /gcc/gcse.c | |
parent | 73a4d10bbb438ec06e0ffee7ee11b9ed02891326 (diff) | |
download | gcc-29d51cdb20e564546451e1e15a87037a7543d8e8.zip gcc-29d51cdb20e564546451e1e15a87037a7543d8e8.tar.gz gcc-29d51cdb20e564546451e1e15a87037a7543d8e8.tar.bz2 |
calls.c (purge_reg_equiv_notes): Remove, fold into...
* calls.c (purge_reg_equiv_notes): Remove, fold into...
(fixup_tail_calls): ...here. Only look at insns between the
start of the function and the FUNCTION_BEG insn note.
* gcse.c (one_cprop_pass): Fix typos in dumps.
* tree-ssa-operands.h (FOR_EACH_PHI_ARG): Fix typos.
From-SVN: r99461
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3415,7 +3415,7 @@ one_cprop_pass (int pass, bool cprop_jumps, bool bypass_jumps) { fprintf (gcse_file, "CPROP of %s, pass %d: %d bytes needed, ", current_function_name (), pass, bytes_used); - fprintf (gcse_file, "%d local const props, %d local copy props\n\n", + fprintf (gcse_file, "%d local const props, %d local copy props, ", local_const_prop_count, local_copy_prop_count); fprintf (gcse_file, "%d global const props, %d global copy props\n\n", global_const_prop_count, global_copy_prop_count); |