From 824f71b9ff74b82e1c125d98a946ffe9fb4ab319 Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Fri, 20 Jul 2012 12:56:41 +0000 Subject: tree-dfa.c (collect_dfa_stats): Simplify. 2012-07-20 Richard Guenther * tree-dfa.c (collect_dfa_stats): Simplify. * tree-ssa-structalias.c (compute_may_aliases): Do not dump referenced vars. * cfgexpand.c (estimated_stack_frame_size): Walk over local decls instead of referenced vars. * tree-ssa.c (delete_tree_ssa): Simplify. * tree-tailcall.c (find_tail_calls): Walk over local decls instead of referenced vars. (add_virtual_phis): Remove. (tree_optimize_tail_calls_1): Instead mark the virtual operand for renaming. From-SVN: r189718 --- gcc/tree-ssa-structalias.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'gcc/tree-ssa-structalias.c') diff --git a/gcc/tree-ssa-structalias.c b/gcc/tree-ssa-structalias.c index caf3506..5c229e9 100644 --- a/gcc/tree-ssa-structalias.c +++ b/gcc/tree-ssa-structalias.c @@ -6736,9 +6736,6 @@ compute_may_aliases (void) /* But still dump what we have remaining it. */ dump_alias_info (dump_file); - - if (dump_flags & TDF_DETAILS) - dump_referenced_vars (dump_file); } return 0; @@ -6751,12 +6748,7 @@ compute_may_aliases (void) /* Debugging dumps. */ if (dump_file) - { - dump_alias_info (dump_file); - - if (dump_flags & TDF_DETAILS) - dump_referenced_vars (dump_file); - } + dump_alias_info (dump_file); /* Deallocate memory used by aliasing data structures and the internal points-to solution. */ -- cgit v1.1