From ba5b9572d6f2ae7de0ea711b3916544f77b9f003 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Fri, 17 Apr 1998 06:32:43 -0600 Subject: [PATCH] stmt.c (mark_seen_cases): Make static and add prototype. 8 * stmt.c (mark_seen_cases): Make static and add prototype. From-SVN: r19264 --- gcc/stmt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gcc/stmt.c b/gcc/stmt.c index 611da701018..d4ff2e69036 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -449,7 +449,8 @@ static void emit_jump_if_reachable PROTO((rtx)); static void emit_case_nodes PROTO((rtx, case_node_ptr, rtx, tree)); static int add_case_node PROTO((tree, tree, tree, tree *)); static struct case_node *case_tree2list PROTO((case_node *, case_node *)); - +static void mark_seen_cases PROTO((tree, unsigned char *, + long, int)); void using_eh_for_cleanups () @@ -4322,7 +4323,7 @@ all_cases_count (type, spareness) The time needed is proportional to COUNT, unless SPARSENESS is 2, in which case quadratic time is needed. */ -void +static void mark_seen_cases (type, cases_seen, count, sparseness) tree type; unsigned char *cases_seen;