diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-08 02:20:19 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-08 02:20:19 +0000 |
commit | c24b7de90d3e31a13d0bae78254c81765495006c (patch) | |
tree | 84e907a4ccd6e43c185cc2bac5bbaeb436f9432a /gcc/gimplify.c | |
parent | 0385f644b804f4b4192b497503d0403e087137b1 (diff) | |
download | gcc-c24b7de90d3e31a13d0bae78254c81765495006c.zip gcc-c24b7de90d3e31a13d0bae78254c81765495006c.tar.gz gcc-c24b7de90d3e31a13d0bae78254c81765495006c.tar.bz2 |
gimplify.c (gimple_push_bind_expr, [...]): Make them static.
* gimplify.c (gimple_push_bind_expr, gimple_pop_bind_expr,
unshare_all_trees): Make them static.
* tree-gimple.h: Remove the corresponding prototypes.
From-SVN: r96079
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r-- | gcc/gimplify.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c index d461d77..ba8e707 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); |