From 77caf6c2ca6dc9ceac9b4727fbf3f8559d837ea4 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 8 Mar 2005 02:20:19 +0000 Subject: * gimplify.c (gimple_push_bind_expr, gimple_pop_bind_expr, unshare_all_trees): Make them static. * tree-gimple.h: Remove the corresponding prototypes. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96079 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/gimplify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/gimplify.c') diff --git a/gcc/gimplify.c b/gcc/gimplify.c index d461d776ee8..ba8e707e069 100644 --- a/gcc/gimplify.c +++ b/gcc/gimplify.c @@ -157,14 +157,14 @@ pop_gimplify_context (tree body) gimplify_ctxp = NULL; } -void +static void gimple_push_bind_expr (tree bind) { TREE_CHAIN (bind) = gimplify_ctxp->current_bind_expr; gimplify_ctxp->current_bind_expr = bind; } -void +static void gimple_pop_bind_expr (void) { gimplify_ctxp->current_bind_expr @@ -706,7 +706,7 @@ unvisit_body (tree *body_p, tree fndecl) /* Unshare T and all the trees reached from T via TREE_CHAIN. */ -void +static void unshare_all_trees (tree t) { walk_tree (&t, copy_if_shared_r, NULL, NULL); -- cgit v1.2.1