diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-06-19 22:47:40 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-19 16:47:40 -0600 |
commit | 561592c581e0e399ec8a3a75ba81050b2753052c (patch) | |
tree | 933b374dc9c5d05e169ad95cbe5c2c77bf889747 /gcc/except.c | |
parent | 19864289846323551f0e3d813c1833014c871c36 (diff) | |
download | gcc-561592c581e0e399ec8a3a75ba81050b2753052c.zip gcc-561592c581e0e399ec8a3a75ba81050b2753052c.tar.gz gcc-561592c581e0e399ec8a3a75ba81050b2753052c.tar.bz2 |
except.c (jumpif_rtx): Make static and add prototype.
* except.c (jumpif_rtx): Make static and add prototype.
(jumpifnot_rtx): Likewise.
From-SVN: r20622
Diffstat (limited to 'gcc/except.c')
-rw-r--r-- | gcc/except.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/except.c b/gcc/except.c index 9d89dd1..74f10304 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; |