mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-31 03:49:42 +08:00
except.c (jumpif_rtx): Make static and add prototype.
* except.c (jumpif_rtx): Make static and add prototype. (jumpifnot_rtx): Likewise. From-SVN: r20622
This commit is contained in:
parent
1986428984
commit
561592c581
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user