tree-flow.h (make_value_handle, [...]): Remove prototypes for removed functions.
authorBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Sun, 7 Jun 2009 19:44:39 +0000 (21:44 +0200)
committerBernhard Reutner-Fischer <aldot@gcc.gnu.org>
Sun, 7 Jun 2009 19:44:39 +0000 (21:44 +0200)
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

gcc/ChangeLog
gcc/matrix-reorg.c
gcc/tree-flow.h
gcc/tree-ssa-sccvn.h

index 5dfc96f199b1eca7fe53e9b4e5f28c4dafdd1660..9889424ca43a0099f47076a823315c0abfd4b911 100644 (file)
@@ -1,3 +1,14 @@
+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.
index 7b8de0b890914effbb7adc76b1d42f065d9ee6b2..d2687b86e474108f8fb033d911df8dd3663aa4e5 100644 (file)
@@ -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:
index 7585de5990ae86c3b958442fe44e43ae69ffc541..1b654a088fdf151714a22f513182adc499fda7a6 100644 (file)
@@ -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);
 
index 706ea4e44b85c07d89c16fddbf87577122ec33a2..c60c28ac11a55b396b4eeb2c9579b7c3328a69df 100644 (file)
 #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;