aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@vlsi1.ultra.nyu.edu>2004-06-25 01:22:04 +0000
committerRichard Kenner <kenner@gcc.gnu.org>2004-06-24 21:22:04 -0400
commit61a36b9baaae66daf5ba883a86d4c0886256b05f (patch)
tree432b6ea3048f4b7964a0786b9adddcfa885b3358 /gcc
parent819e019c9d5aa88675f8714028a6a0952c63282a (diff)
downloadgcc-61a36b9baaae66daf5ba883a86d4c0886256b05f.zip
gcc-61a36b9baaae66daf5ba883a86d4c0886256b05f.tar.gz
gcc-61a36b9baaae66daf5ba883a86d4c0886256b05f.tar.bz2
tree.h (debug_find_tree): Add declaration.
* tree.h (debug_find_tree): Add declaration. * tree-inline.c (debug_find_tree): Remove extern declaration. From-SVN: r83627
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/tree-inline.c2
-rw-r--r--gcc/tree.h3
3 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6c6bcf3..8646991 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-24 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
+
+ * tree.h (debug_find_tree): Add declaration.
+ * tree-inline.c (debug_find_tree): Remove extern declaration.
+
2004-06-24 Eric Christopher <echristo@redhat.com>
* config/rs6000/rs6000.md: Apply change mistakenly
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c
index 1d6e4c4..7afab37 100644
--- a/gcc/tree-inline.c
+++ b/gcc/tree-inline.c
@@ -2452,8 +2452,6 @@ debug_find_tree_1 (tree *tp, int *walk_subtrees ATTRIBUTE_UNUSED, void *data)
return NULL;
}
-extern bool debug_find_tree (tree top, tree search);
-
bool
debug_find_tree (tree top, tree search)
{
diff --git a/gcc/tree.h b/gcc/tree.h
index 3d3c6f1..41f75d8 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -3476,6 +3476,9 @@ extern void print_node_brief (FILE *, const char *, tree, int);
extern void indent_to (FILE *, int);
#endif
+/* In tree-inline.c: */
+extern bool debug_find_tree (tree, tree);
+
/* In expr.c */
extern rtx expand_builtin_return_addr (enum built_in_function, int, rtx);
extern void check_max_integer_computation_mode (tree);