From: Richard Kenner Date: Fri, 25 Jun 2004 01:22:04 +0000 (+0000) Subject: tree.h (debug_find_tree): Add declaration. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61a36b9baaae66daf5ba883a86d4c0886256b05f;p=gcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6c6bcf369f8..86469913bc9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-06-24 Richard Kenner + + * tree.h (debug_find_tree): Add declaration. + * tree-inline.c (debug_find_tree): Remove extern declaration. + 2004-06-24 Eric Christopher * config/rs6000/rs6000.md: Apply change mistakenly diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 1d6e4c4dbae..7afab37b614 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 3d3c6f11baa..41f75d88a1e 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);