Commit e1a8be3f by Kazu Hirata Committed by Kazu Hirata

tree-ssa-loop-niter.c (upper_bound_in_type, [...]): Make them static.

	* tree-ssa-loop-niter.c (upper_bound_in_type,
	lower_bound_in_type): Make them static.
	* tree.h: Remove the corresponding prototypes.

From-SVN: r90312
parent 1d9d8683
2004-11-08 Kazu Hirata <kazu@cs.umass.edu> 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 * tree-ssa-live.c (tpa_init, pop_best_coalesce): Make them
static. static.
* tree-ssa-live.h: Remove the corresponding prototypes. * tree-ssa-live.h: Remove the corresponding prototypes.
......
...@@ -1106,7 +1106,7 @@ compare_trees (tree a, tree b) ...@@ -1106,7 +1106,7 @@ compare_trees (tree a, tree b)
/* Returns the largest value obtainable by casting something in INNER type to /* Returns the largest value obtainable by casting something in INNER type to
OUTER type. */ OUTER type. */
tree static tree
upper_bound_in_type (tree outer, tree inner) upper_bound_in_type (tree outer, tree inner)
{ {
unsigned HOST_WIDE_INT lo, hi; unsigned HOST_WIDE_INT lo, hi;
...@@ -1152,7 +1152,7 @@ upper_bound_in_type (tree outer, tree inner) ...@@ -1152,7 +1152,7 @@ upper_bound_in_type (tree outer, tree inner)
/* Returns the smallest value obtainable by casting something in INNER type to /* Returns the smallest value obtainable by casting something in INNER type to
OUTER type. */ OUTER type. */
tree static tree
lower_bound_in_type (tree outer, tree inner) lower_bound_in_type (tree outer, tree inner)
{ {
unsigned HOST_WIDE_INT lo, hi; unsigned HOST_WIDE_INT lo, hi;
......
...@@ -3923,10 +3923,6 @@ extern int tree_node_sizes[]; ...@@ -3923,10 +3923,6 @@ extern int tree_node_sizes[];
restricted to creating gimple expressions. */ restricted to creating gimple expressions. */
extern bool in_gimple_form; 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. */ /* In tree-ssa-threadupdate.c. */
extern bool thread_through_all_blocks (void); extern bool thread_through_all_blocks (void);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment