From 0a227ed5edeaf150b5ae49ffabc8f9583f6c301a Mon Sep 17 00:00:00 2001 From: steven Date: Mon, 9 May 2005 17:52:20 +0000 Subject: * 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 --- gcc/gcse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/gcse.c') 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); -- cgit v1.2.1