diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fedba1683ca2..b5764247478c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -18,6 +18,9 @@ Fri Jun 19 23:06:33 1998 Jason Merrill Fri Jun 19 22:55:14 1998 Jeffrey A Law (law@cygnus.com) + * except.c (jumpif_rtx): Make static and add prototype. + (jumpifnot_rtx): Likewise. + * README.gnat: Add a build patch from Fred Fish. * c-lang.c (GNU_xref_begin, GNU_xref_end): Deleted. diff --git a/gcc/except.c b/gcc/except.c index 9d89dd1c8df4..74f10304a11d 100644 --- a/gcc/except.c +++ b/gcc/except.c @@ -503,6 +503,9 @@ static int can_throw PROTO((rtx)); static rtx scan_region PROTO((rtx, int, int *)); static void eh_regs PROTO((rtx *, rtx *, int)); static void set_insn_eh_region PROTO((rtx *, int)); +static void jumpif_rtx PROTO((rtx, rtx)); +static void jumpifnot_rtx PROTO((rtx, rtx)); + rtx expand_builtin_return_addr PROTO((enum built_in_function, int, rtx)); @@ -1052,7 +1055,7 @@ get_dynamic_cleanup_chain () /* Generate code to evaluate X and jump to LABEL if the value is nonzero. LABEL is an rtx of code CODE_LABEL, in this function. */ -void +static void jumpif_rtx (x, label) rtx x; rtx label; @@ -1063,7 +1066,7 @@ jumpif_rtx (x, label) /* Generate code to evaluate X and jump to LABEL if the value is zero. LABEL is an rtx of code CODE_LABEL, in this function. */ -void +static void jumpifnot_rtx (x, label) rtx x; rtx label;