Commit df03cab5 by Jeffrey A Law Committed by Jeff Law

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
parent 1e89ac8a
Wed May 6 22:32:37 CDT 1998 Robert Lipe <robertl@dgii.com> Wed May 6 22:32:37 CDT 1998 Robert Lipe <robertl@dgii.com>
* Makefile.in (dwarfout.o) Add toplev.h dependency. * Makefile.in (dwarfout.o) Add toplev.h dependency.
...@@ -34,6 +33,9 @@ Wed May 6 15:51:39 1998 Jim Wilson <wilson@cygnus.com> ...@@ -34,6 +33,9 @@ Wed May 6 15:51:39 1998 Jim Wilson <wilson@cygnus.com>
Wed May 6 16:46:01 1998 Jeffrey A Law (law@cygnus.com) Wed May 6 16:46:01 1998 Jeffrey A Law (law@cygnus.com)
* stmt.c (mark_seen_cases): Make it have external linkage again.
* expr.h (mark_seen_cases): Add declaration.
* haifa-sched.c (print_value, case SUBREG): Fix typo. * haifa-sched.c (print_value, case SUBREG): Fix typo.
* i386.c (output_387_binary_op): Add some braces to avoid warnings. * i386.c (output_387_binary_op): Add some braces to avoid warnings.
......
...@@ -949,3 +949,6 @@ extern void init_all_optabs PROTO ((void)); ...@@ -949,3 +949,6 @@ extern void init_all_optabs PROTO ((void));
extern void init_mov_optab PROTO ((void)); extern void init_mov_optab PROTO ((void));
extern void do_jump_by_parts_greater_rtx PROTO ((enum machine_mode, int, extern void do_jump_by_parts_greater_rtx PROTO ((enum machine_mode, int,
rtx, rtx, rtx, rtx)); rtx, rtx, rtx, rtx));
extern void mark_seen_cases PROTO ((tree, unsigned char *,
long, int));
...@@ -445,8 +445,6 @@ static void emit_jump_if_reachable PROTO((rtx)); ...@@ -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 void emit_case_nodes PROTO((rtx, case_node_ptr, rtx, tree));
static int add_case_node PROTO((tree, tree, tree, tree *)); static int add_case_node PROTO((tree, tree, tree, tree *));
static struct case_node *case_tree2list PROTO((case_node *, case_node *)); static struct case_node *case_tree2list PROTO((case_node *, case_node *));
static void mark_seen_cases PROTO((tree, unsigned char *,
long, int));
void void
using_eh_for_cleanups () using_eh_for_cleanups ()
...@@ -4321,7 +4319,7 @@ all_cases_count (type, spareness) ...@@ -4321,7 +4319,7 @@ all_cases_count (type, spareness)
The time needed is proportional to COUNT, unless The time needed is proportional to COUNT, unless
SPARSENESS is 2, in which case quadratic time is needed. */ SPARSENESS is 2, in which case quadratic time is needed. */
static void void
mark_seen_cases (type, cases_seen, count, sparseness) mark_seen_cases (type, cases_seen, count, sparseness)
tree type; tree type;
unsigned char *cases_seen; unsigned char *cases_seen;
......
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