diff options
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 0c23188..10ac8f3 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -50,7 +50,7 @@ static struct bucket **table; Most nodes referred to by this one are printed recursively down to a depth of six. */ -void +DEBUG_FUNCTION void debug_tree (tree node) { table = XCNEWVEC (struct bucket *, HASH_SIZE); @@ -64,7 +64,7 @@ debug_tree (tree node) Most nodes referred to by this one are printed recursively down to a depth of six. */ -void +DEBUG_FUNCTION void debug_vec_tree (VEC(tree,gc) *vec) { table = XCNEWVEC (struct bucket *, HASH_SIZE); |