diff options
author | Richard Guenther <rguenther@suse.de> | 2012-07-20 12:56:41 +0000 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2012-07-20 12:56:41 +0000 |
commit | 824f71b9ff74b82e1c125d98a946ffe9fb4ab319 (patch) | |
tree | 0ce8a7a96625c3f82c59f92dc328c670a5145386 /gcc/tree-ssa-structalias.c | |
parent | c4669594047cb4a711e77a0ea53c139d9ed16f31 (diff) | |
download | gcc-824f71b9ff74b82e1c125d98a946ffe9fb4ab319.zip gcc-824f71b9ff74b82e1c125d98a946ffe9fb4ab319.tar.gz gcc-824f71b9ff74b82e1c125d98a946ffe9fb4ab319.tar.bz2 |
tree-dfa.c (collect_dfa_stats): Simplify.
2012-07-20 Richard Guenther <rguenther@suse.de>
* 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
Diffstat (limited to 'gcc/tree-ssa-structalias.c')
-rw-r--r-- | gcc/tree-ssa-structalias.c | 10 |
1 files changed, 1 insertions, 9 deletions
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. */ |