aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeffrey A Law <law@cygnus.com>1998-06-19 22:47:40 +0000
committerJeff Law <law@gcc.gnu.org>1998-06-19 16:47:40 -0600
commit561592c581e0e399ec8a3a75ba81050b2753052c (patch)
tree933b374dc9c5d05e169ad95cbe5c2c77bf889747 /gcc
parent19864289846323551f0e3d813c1833014c871c36 (diff)
downloadgcc-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')
-rw-r--r--gcc/ChangeLog3
-rw-r--r--gcc/except.c7
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index fedba16..b576424 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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.
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;