diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-11-08 22:36:48 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-11-08 22:36:48 +0000 |
commit | 1d9d86833d43af71da3b984092db7027130a8c25 (patch) | |
tree | a5ed8a542e1e31d8f4da3570ad2646fc113959f0 /gcc/tree-ssa-live.c | |
parent | a1d3c05ce7c009bfa0c88a84ce1521e55889648d (diff) | |
download | gcc-1d9d86833d43af71da3b984092db7027130a8c25.zip gcc-1d9d86833d43af71da3b984092db7027130a8c25.tar.gz gcc-1d9d86833d43af71da3b984092db7027130a8c25.tar.bz2 |
tree-ssa-live.c (tpa_init, [...]): Make them static.
* tree-ssa-live.c (tpa_init, pop_best_coalesce): Make them
static.
* tree-ssa-live.h: Remove the corresponding prototypes.
From-SVN: r90311
Diffstat (limited to 'gcc/tree-ssa-live.c')
-rw-r--r-- | gcc/tree-ssa-live.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index b3f0b78..554a039 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -779,7 +779,7 @@ calculate_live_on_exit (tree_live_info_p liveinfo) /* Initialize a tree_partition_associator object using MAP. */ -tpa_p +static tpa_p tpa_init (var_map map) { tpa_p tpa; @@ -1233,7 +1233,7 @@ sort_coalesce_list (coalesce_list_p cl) partitions via P1 and P2. Their calculated cost is returned by the function. NO_BEST_COALESCE is returned if the coalesce list is empty. */ -int +static int pop_best_coalesce (coalesce_list_p cl, int *p1, int *p2) { partition_pair_p node; |