Commit 561592c5 by Jeffrey A Law Committed by Jeff Law

except.c (jumpif_rtx): Make static and add prototype.

        * except.c (jumpif_rtx): Make static and add prototype.
        (jumpifnot_rtx): Likewise.

From-SVN: r20622
parent 19864289
......@@ -18,6 +18,9 @@ Fri Jun 19 23:06:33 1998 Jason Merrill <jason@yorick.cygnus.com>
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.
......
......@@ -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;
......
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