diff options
author | Jeff Law <law@redhat.com> | 2015-09-18 13:12:22 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2015-09-18 13:12:22 -0600 |
commit | 1b2fe7d3f73ccec0ab13a1b9fa68356dab52d9d4 (patch) | |
tree | ef3a3f2d651a8a3df1740bb1002c0178bde1c455 /gcc/tree-ssa-dom.h | |
parent | 5877e54ea0ab4f38f9046a12633de4fa6671e925 (diff) | |
download | gcc-1b2fe7d3f73ccec0ab13a1b9fa68356dab52d9d4.zip gcc-1b2fe7d3f73ccec0ab13a1b9fa68356dab52d9d4.tar.gz gcc-1b2fe7d3f73ccec0ab13a1b9fa68356dab52d9d4.tar.bz2 |
[PATCH] avail_exprs is no longer file scoped
* tree-ssa-dom.c (avail_exprs): No longer file scoped. Bury
it into the avail_exprs_stack class.
(pass_dominator::execute): Corresponding changes to declaration
and initialization of avail_exprs. Pass avail_exprs to
dump_dominator_optimization_stats.
(record_cond): Extract avail_exprs from avail_exprs_stack.
(lookup_avail_expr): Similarly.
(htab_staticstics): Remove unnecessary prototype. Move to earlier
position in file.
(dump_dominator_optimization_stats): Make static and prototype.
Add argument for the hash table to dump.
(debug_dominator_optimization_stats): Remove.
* tree-ssa-dom.h (dump_dominator_optimization_stats): Remove
prototype.
(debug_dominator_optimization_stats): Similarly.
* tree-ssa-scopedtables.h (class avail_exprs_stack): Add missing
"void" in prototype for pop_to_marker method. Add accessor method
for the underlying avail_exprs table.
* tree-ssa-threadedge.c: Remove trailing whitespace.
From-SVN: r227921
Diffstat (limited to 'gcc/tree-ssa-dom.h')
-rw-r--r-- | gcc/tree-ssa-dom.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/tree-ssa-dom.h b/gcc/tree-ssa-dom.h index f8f9698..7ecdaf1 100644 --- a/gcc/tree-ssa-dom.h +++ b/gcc/tree-ssa-dom.h @@ -20,8 +20,6 @@ along with GCC; see the file COPYING3. If not see #ifndef GCC_TREE_SSA_DOM_H #define GCC_TREE_SSA_DOM_H -extern void dump_dominator_optimization_stats (FILE *); -extern void debug_dominator_optimization_stats (void); extern bool simple_iv_increment_p (gimple); #endif /* GCC_TREE_SSA_DOM_H */ |