diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2009-06-07 21:44:39 +0200 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2009-06-07 21:44:39 +0200 |
commit | b2ad028425653a0ac98a3e50999609c48e91288a (patch) | |
tree | 3156a7607832822bdae23d274a64e22f915458f2 /gcc | |
parent | c3df55f94773478015c650ed21d0ca70bc8dbc10 (diff) | |
download | gcc-b2ad028425653a0ac98a3e50999609c48e91288a.zip gcc-b2ad028425653a0ac98a3e50999609c48e91288a.tar.gz gcc-b2ad028425653a0ac98a3e50999609c48e91288a.tar.bz2 |
tree-flow.h (make_value_handle, [...]): Remove prototypes for removed functions.
2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org>
* tree-flow.h (make_value_handle, set_value_handle, sort_vuses,
sort_vuses_heap, vn_lookup_or_add, vn_lookup_or_add_with_stmt,
vn_lookup_or_add_with_vuses, vn_add, vn_add_with_vuses,
vn_lookup_with_stmt, vn_lookup, vn_lookup_with_vuses): Remove
prototypes for removed functions.
(expressions_equal_p): Move to ...
* tree-ssa-sccvn.h: ... here and ...
* matrix-reorg.c: ... adjust includes.
From-SVN: r148261
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/matrix-reorg.c | 1 | ||||
-rw-r--r-- | gcc/tree-flow.h | 16 | ||||
-rw-r--r-- | gcc/tree-ssa-sccvn.h | 4 |
4 files changed, 16 insertions, 16 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5dfc96f..9889424 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,16 @@ 2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> + * tree-flow.h (make_value_handle, set_value_handle, sort_vuses, + sort_vuses_heap, vn_lookup_or_add, vn_lookup_or_add_with_stmt, + vn_lookup_or_add_with_vuses, vn_add, vn_add_with_vuses, + vn_lookup_with_stmt, vn_lookup, vn_lookup_with_vuses): Remove + prototypes for removed functions. + (expressions_equal_p): Move to ... + * tree-ssa-sccvn.h: ... here and ... + * matrix-reorg.c: ... adjust includes. + +2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> + * ipa-struct-reorg.c (do_reorg_1): Fix whitespace in dump output. 2009-06-07 Bernhard Reutner-Fischer <aldot@gcc.gnu.org> diff --git a/gcc/matrix-reorg.c b/gcc/matrix-reorg.c index 7b8de0b..d2687b8 100644 --- a/gcc/matrix-reorg.c +++ b/gcc/matrix-reorg.c @@ -140,6 +140,7 @@ along with GCC; see the file COPYING3. If not see #include "tree-data-ref.h" #include "tree-chrec.h" #include "tree-scalar-evolution.h" +#include "tree-ssa-sccvn.h" /* We need to collect a lot of data from the original malloc, particularly as the gimplifier has converted: diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 7585de5..1b654a088 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -861,22 +861,6 @@ void add_to_value (unsigned int, struct pre_expr_d *); void debug_value_expressions (unsigned int); void print_value_expressions (FILE *, unsigned int); - -/* In tree-vn.c */ -tree make_value_handle (tree); -void set_value_handle (tree, tree); -bool expressions_equal_p (tree, tree); -void sort_vuses (VEC (tree, gc) *); -void sort_vuses_heap (VEC (tree, heap) *); -tree vn_lookup_or_add (tree); -tree vn_lookup_or_add_with_stmt (tree, gimple); -tree vn_lookup_or_add_with_vuses (tree, VEC (tree, gc) *); -void vn_add (tree, tree); -void vn_add_with_vuses (tree, tree, VEC (tree, gc) *); -tree vn_lookup_with_stmt (tree, gimple); -tree vn_lookup (tree); -tree vn_lookup_with_vuses (tree, VEC (tree, gc) *); - /* In tree-ssa-sink.c */ bool is_hidden_global_store (gimple); diff --git a/gcc/tree-ssa-sccvn.h b/gcc/tree-ssa-sccvn.h index 706ea4e..c60c28a 100644 --- a/gcc/tree-ssa-sccvn.h +++ b/gcc/tree-ssa-sccvn.h @@ -21,6 +21,10 @@ #ifndef TREE_SSA_SCCVN_H #define TREE_SSA_SCCVN_H +/* In tree-ssa-sccvn.c */ +bool expressions_equal_p (tree, tree); + + /* TOP of the VN lattice. */ extern tree VN_TOP; |