diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-08 22:38:12 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-08 22:38:12 +0000 |
| commit | 0f94aa6bbbf5e33ae6a4dfe7bc2ca704db30aec8 (patch) | |
| tree | 0a403ea6904ca0e4c94bc4439c6c73927d8f07af | |
| parent | 739485aaec930d343c73006a3d77ace3f3c899cf (diff) | |
| download | ppe42-gcc-0f94aa6bbbf5e33ae6a4dfe7bc2ca704db30aec8.tar.gz ppe42-gcc-0f94aa6bbbf5e33ae6a4dfe7bc2ca704db30aec8.zip | |
* tree-ssa-loop-niter.c (upper_bound_in_type,
lower_bound_in_type): Make them static.
* tree.h: Remove the corresponding prototypes.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90312 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 6 | ||||
| -rw-r--r-- | gcc/tree-ssa-loop-niter.c | 4 | ||||
| -rw-r--r-- | gcc/tree.h | 4 |
3 files changed, 8 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4c08af64912..a756a2491d0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + * tree-ssa-loop-niter.c (upper_bound_in_type, + lower_bound_in_type): Make them static. + * tree.h: Remove the corresponding prototypes. + +2004-11-08 Kazu Hirata <kazu@cs.umass.edu> + * tree-ssa-live.c (tpa_init, pop_best_coalesce): Make them static. * tree-ssa-live.h: Remove the corresponding prototypes. diff --git a/gcc/tree-ssa-loop-niter.c b/gcc/tree-ssa-loop-niter.c index 496b3f3eebd..6352ba0345e 100644 --- a/gcc/tree-ssa-loop-niter.c +++ b/gcc/tree-ssa-loop-niter.c @@ -1106,7 +1106,7 @@ compare_trees (tree a, tree b) /* Returns the largest value obtainable by casting something in INNER type to OUTER type. */ -tree +static tree upper_bound_in_type (tree outer, tree inner) { unsigned HOST_WIDE_INT lo, hi; @@ -1152,7 +1152,7 @@ upper_bound_in_type (tree outer, tree inner) /* Returns the smallest value obtainable by casting something in INNER type to OUTER type. */ -tree +static tree lower_bound_in_type (tree outer, tree inner) { unsigned HOST_WIDE_INT lo, hi; diff --git a/gcc/tree.h b/gcc/tree.h index b35066d1ba4..b0b6c955c34 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -3923,10 +3923,6 @@ extern int tree_node_sizes[]; restricted to creating gimple expressions. */ extern bool in_gimple_form; -/* In tree-ssa-loop-niter.c. */ -tree lower_bound_in_type (tree, tree); -tree upper_bound_in_type (tree, tree); - /* In tree-ssa-threadupdate.c. */ extern bool thread_through_all_blocks (void); |

