diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-05-06 22:03:21 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-05-06 16:03:21 -0600 |
commit | df03cab511deb95a71f4c1f799517cbe76655d1e (patch) | |
tree | 0635cf5c771e3675d4df140b0fb2d4a868fe27c9 /gcc/stmt.c | |
parent | 1e89ac8ab2b6ae01998aaf5b8b0bf4c12951a484 (diff) | |
download | gcc-df03cab511deb95a71f4c1f799517cbe76655d1e.zip gcc-df03cab511deb95a71f4c1f799517cbe76655d1e.tar.gz gcc-df03cab511deb95a71f4c1f799517cbe76655d1e.tar.bz2 |
stmt.c (mark_seen_cases): Make it have external linkage again.
* stmt.c (mark_seen_cases): Make it have external linkage again.
* expr.h (mark_seen_cases): Add declaration.
Chill wants to use mark_seen_cases....
From-SVN: r19603
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -445,8 +445,6 @@ 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 () @@ -4321,7 +4319,7 @@ all_cases_count (type, spareness) The time needed is proportional to COUNT, unless SPARSENESS is 2, in which case quadratic time is needed. */ -static void +void mark_seen_cases (type, cases_seen, count, sparseness) tree type; unsigned char *cases_seen; |