From a1d3c05ce7c009bfa0c88a84ce1521e55889648d Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Mon, 8 Nov 2004 22:34:18 +0000 Subject: [PATCH] tree-if-conv.c (tree_if_conversion): Make it static. * tree-if-conv.c (tree_if_conversion): Make it static. * tree-flow.h: Remove the corresponding prototype. From-SVN: r90310 --- gcc/ChangeLog | 5 +++++ gcc/tree-flow.h | 4 ---- gcc/tree-if-conv.c | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8ece683baca..213f0dc2c36 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2004-11-08 Kazu Hirata + + * tree-if-conv.c (tree_if_conversion): Make it static. + * tree-flow.h: Remove the corresponding prototype. + 2004-11-08 Kazu Hirata * tree-ssa-operands.c (build_ssa_operands): Make it static. diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 8fabccc0aff..829eff8ef2c 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -692,10 +692,6 @@ enum move_pos }; extern enum move_pos movement_possibility (tree); -/* In tree-if-conv.c */ -bool tree_if_conversion (struct loop *, bool); - - /* In tree-flow-inline.h */ static inline int phi_arg_from_edge (tree, edge); static inline bool is_call_clobbered (tree); diff --git a/gcc/tree-if-conv.c b/gcc/tree-if-conv.c index 371d0a6df2a..3199015935e 100644 --- a/gcc/tree-if-conv.c +++ b/gcc/tree-if-conv.c @@ -138,7 +138,7 @@ static basic_block *ifc_bbs; for vectorizer or not. If it is used for vectorizer, additional checks are used. (Vectorization checks are not yet implemented). */ -bool +static bool tree_if_conversion (struct loop *loop, bool for_vectorizer) { basic_block bb; -- 2.30.2