summaryrefslogtreecommitdiff
path: root/gcc/flow.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-21 21:49:52 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-06-21 21:49:52 +0000
commit90a702525e9113c5f645f0f63c7aa59ebb79c361 (patch)
treeaf6c7a946581bc4f3f6f0ec6c3c1eaba905a1267 /gcc/flow.c
parent6d6a1312a3bf5330bf15edb321028f177d4ac29e (diff)
downloadgcc-90a702525e9113c5f645f0f63c7aa59ebb79c361.tar.gz
* basic-block.h (init_regset_vector): Delete declaration.
* flow.c (init_regset_vector): Make it static and add a prototype. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@20647 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/flow.c')
-rw-r--r--gcc/flow.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/flow.c b/gcc/flow.c
index fa77fae12ca..f8ce8689d37 100644
--- a/gcc/flow.c
+++ b/gcc/flow.c
@@ -282,6 +282,8 @@ static void add_pred_succ PROTO ((int, int, int_list_ptr *,
static int_list_ptr alloc_int_list_node PROTO ((int_list_block **));
static int_list_ptr add_int_list_node PROTO ((int_list_block **,
int_list **, int));
+static void init_regset_vector PROTO ((regset *, int,
+ struct obstack *));
/* Find basic blocks of the current function.
F is the first insn of the function and NREGS the number of register numbers
@@ -1496,7 +1498,7 @@ allocate_for_life_analysis ()
NELTS elements, and space is allocated from the ALLOC_OBSTACK
obstack. */
-void
+static void
init_regset_vector (vector, nelts, alloc_obstack)
regset *vector;
int nelts;