diff options
author | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-09 17:52:20 +0000 |
---|---|---|
committer | steven <steven@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-05-09 17:52:20 +0000 |
commit | 0a227ed5edeaf150b5ae49ffabc8f9583f6c301a (patch) | |
tree | 6ca937bbe1996a99e17b469a90f86c5b560f1d05 /gcc/gcse.c | |
parent | 59312820e49658a8bf1f74d96fc59c14f6a8c564 (diff) | |
download | gcc-0a227ed5edeaf150b5ae49ffabc8f9583f6c301a.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99461 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c index 10460a8f32f..3cd1268df02 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -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); |